diff --git a/bash/etc-profile.d scripts/commandAliases.sh b/bash/etc-profile.d scripts/commandAliases.sh new file mode 100644 index 0000000..63fdb1f --- /dev/null +++ b/bash/etc-profile.d scripts/commandAliases.sh @@ -0,0 +1,9 @@ +### Note: If you change the name of this file, it must come AFTER colourLS.sh +### alphabetically to avoid errors from references to LS_OPTIONS + +### Set command aliases +alias ll='ls $LS_OPTIONS -l' +alias l='ls $LS_OPTIONS -lA' +alias rm='rm -i' +alias mv='mv -i' +alias cp='cp -i'