]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - config/etc/bashrc
Added one missing string.
[people/pmueller/ipfire-2.x.git] / config / etc / bashrc
index e54dc861c2e6a7f84f1e3c251ff159e86eef5129..e35209f335ff37d689d61bd4156548a1183650bc 100644 (file)
@@ -20,13 +20,27 @@ fi
 # /etc/profile.
 
 alias ls='ls --color=auto'
+alias ll='ls -la'
+alias which='alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'
+
+# Make the shell a little bit more interactive 
+# to prevent the deletion of some files
+alias mv='mv -i'
+alias rm='rm -i'
+alias cp='cp -i'
+
+# Midnight Commander isn't compatible to UTF8.
+# So we use it in ACSII-Mode.
+
+alias mc='mc -a'
 
 # Provides prompt for non-login shells, specifically shells started
 # in the X environment. [Review the LFS archive thread titled
 # PS1 Environment Variable for a great case study behind this script
 # addendum.]
 
-#export PS1="[\u@\h \w]\\$ "
-export PS1='\u@\h:\w\$ '
+#export PS1="\033[0m[\033[1;33m\u\033[1;37m@\033[1;32m\]\h \033[1;31m\w\033[0m]\\$ "
+export PS1="[\u@\h \w]\\$ "
+#export PS1='\u@\h:\w\$ '
 
 # End /etc/bashrc