From 6706297ef096351201583248d1f9494810e9c49f Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Sat, 21 Jul 2018 23:38:25 -0600 Subject: [PATCH] Added commandAliases.sh to profile.d to set aliases globally --- bash/etc-profile.d scripts/commandAliases.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 bash/etc-profile.d scripts/commandAliases.sh 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'