aboutsummaryrefslogtreecommitdiff
path: root/shell/ash
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2021-09-05 00:23:41 -0400
committerMitchell Riedstra <mitch@riedstra.dev>2021-09-05 00:23:41 -0400
commit27ac56f3af62474cb4e69728541e551c0c5dd4a4 (patch)
tree4fece6e169320bdfa8b2fc90fc629285520fcb0f /shell/ash
parent319ac2aec7787ae500eb3ff84020b7ca3e149298 (diff)
downloaddotfiles-27ac56f3af62474cb4e69728541e551c0c5dd4a4.tar.gz
dotfiles-27ac56f3af62474cb4e69728541e551c0c5dd4a4.tar.xz
Major updates to my shell configuration
Diffstat (limited to 'shell/ash')
-rw-r--r--shell/ash19
1 files changed, 0 insertions, 19 deletions
diff --git a/shell/ash b/shell/ash
deleted file mode 100644
index 18c2cf2..0000000
--- a/shell/ash
+++ /dev/null
@@ -1,19 +0,0 @@
-color="no"
-case "$TERM" in
- xterm*) color=yes;;
- *256color) color=yes;;
-esac
-
-case "$-" in
-*i*)
- set_pager
- set_editor
- setaliases
-
- export PS1="$ "
- if [ "$(id -u)" -eq 0 ] ; then
- export PS1="# "
- fi
-;;
-*) return ;;
-esac