aboutsummaryrefslogtreecommitdiff
path: root/yash/yashrc
diff options
context:
space:
mode:
Diffstat (limited to 'yash/yashrc')
-rw-r--r--yash/yashrc14
1 files changed, 0 insertions, 14 deletions
diff --git a/yash/yashrc b/yash/yashrc
deleted file mode 100644
index c2b2df26..00000000
--- a/yash/yashrc
+++ /dev/null
@@ -1,14 +0,0 @@
-# Clear away all aliases; we do this here rather than in $ENV because the ksh
-# family of shells relies on aliases to implement certain POSIX utilities like
-# fc(1) and type(1)
-unalias -a
-
-# Load POSIX interactive shell startup files, because Yash won't do it if not
-# invoked as sh(1)
-[ -e "$ENV" ] && . "$ENV"
-
-# Load Bash-specific startup files
-for sh in "$HOME"/.yashrc.d/*.yash ; do
- [ -e "$sh" ] && . "$sh"
-done
-unset -v sh