From 3c2b4963b038f4bf10f92f3beb4a1ad4c00621c6 Mon Sep 17 00:00:00 2001 From: Kolan Sh Date: Wed, 16 Sep 2015 17:53:02 +0300 Subject: [PATCH] Bash: nocorrect reserved word not supported --- alias.sh | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/alias.sh b/alias.sh index e94542a..b0f64ff 100755 --- a/alias.sh +++ b/alias.sh @@ -11,9 +11,9 @@ alias llha='llah' alias fls="fls -rd" # file operations -alias cp='nocorrect cp --verbose --preserve=all' -alias mv='nocorrect mv --verbose' -alias rm='nocorrect rm -v' +alias cp='cp --verbose --preserve=all' +alias mv='mv --verbose' +alias rm='rm -v' alias ln='ln -vi' alias chmod='chmod -v' alias chown='chown -v' @@ -63,9 +63,6 @@ alias killall="killall --interactive --verbose" alias free="free -t -h" -which git &>/dev/null && alias git="nocorrect git" -which hg &>/dev/null && alias hg="nocorrect hg" - which scrot &>/dev/null && alias scrot="scrot --border --count --quality 75 $HOME'/screenshots/%d-%b-%y_%H-%M-%S_\$wx\$h.png' --exec 'du -h \$f'" which sudo &>/dev/null && alias su='sudo su -'