diff --git a/bashrc b/bashrc index b0e6c06..050f10c 100644 --- a/bashrc +++ b/bashrc @@ -1,2 +1,4 @@ # https://github.com/janmoesen/tilde/blob/master/.bashrc +echo $TERM_PROGRAM +alias xxx="ls" [ -n "$PS1" ] && source ~/.bash_profile; \ No newline at end of file diff --git a/includes/bash_aliases.sh b/includes/bash_aliases.sh index 85fda33..366b2cc 100644 --- a/includes/bash_aliases.sh +++ b/includes/bash_aliases.sh @@ -28,6 +28,9 @@ export LS_COLORS='no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40 # Enable aliases to be sudo’ed alias sudo='sudo ' +# Avoid stupidity +alias rm="rm -i" + # Gzip-enabled `curl` #alias gurl="curl --compressed"