config/shell: update editing aliases

This commit is contained in:
xerus2000 2021-02-15 20:57:17 +01:00
parent 8d7b9a1e9b
commit b5f348f5cc
2 changed files with 5 additions and 4 deletions

View File

@ -23,7 +23,7 @@ ulimit -c unlimited # Enable core dumps
which lsb_release >/dev/null && export DIST=$(lsb_release --id | cut -d' ' -f2) || true which lsb_release >/dev/null && export DIST=$(lsb_release --id | cut -d' ' -f2) || true
unalias rd unalias rd 2>/dev/null
rd() { rd() {
test -d "$1" && find "$1" -type d -empty -printf "Removing %p\n" -delete || rm "$@" test -d "$1" && find "$1" -type d -empty -printf "Removing %p\n" -delete || rm "$@"
} }
@ -41,8 +41,9 @@ wh() {
alias logoff="loginctl terminate-user $USER" alias logoff="loginctl terminate-user $USER"
# Some aliases # Some aliases
alias editgrub='sudoedit /etc/default/grub && sudo update-grub' alias edgrub='sudoedit /etc/default/grub && sudo update-grub'
alias editenv='sudoedit /etc/environment' alias edenv='sudoedit /etc/environment'
alias edpart='sudoedit /etc/fstab && sudo findmnt --verify'
# Underline arg # Underline arg
highlight() { echo "$1" } highlight() { echo "$1" }

View File

@ -159,7 +159,7 @@ setopt pipefail
# Enable zmv (see ZSHCONTRIB(1)) # Enable zmv (see ZSHCONTRIB(1))
autoload zmv autoload zmv
alias zmv='noglob zmv' alias zmv='noglob zmv'
alias zmw='zmv -W' alias zmw='noglob zmv -W'
alias zcp='noglob zmv -C' alias zcp='noglob zmv -C'
alias zln='noglob zmv -L' alias zln='noglob zmv -L'
alias zsy='noglob zmv -Ls' alias zsy='noglob zmv -Ls'