Modified zsh aliases

This commit is contained in:
Christian Baer 2021-01-23 21:23:44 +01:00
parent d5a45d5883
commit d7c857d1d9

View File

@ -9,26 +9,23 @@ fi
unfunction _exists unfunction _exists
alias ls="ls --color=always -h" alias ls="ls -FGhkTv"
alias ll="ls -lah" alias ll="ls -FGhkTvl"
alias mkdir="mkdir -p" alias mkdir="mkdir -p"
alias ...="cd ../.." alias ...="cd ../.."
alias foldersize="du -sh"
alias duf="du -sk * | sort -n | while read size fname; do for unit in k M G T P E Z Y; do if [ $size -lt 1024 ]; then echo -e "${size}${unit}\t${fname}"; break; fi; size=$((size/1024)); done; done"
alias google="ping -c 10240000 google.com" alias google="ping -c 10240000 google.com"
alias history="history -i" alias history="history -i"
alias sulast="sudo $(history -p !-1)" alias sulast="sudo $(history -p !-1)"
alias ydl="youtube-dl -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best'"
case `uname` in case `uname` in
Darwin) Darwin)
# commands for OS X go here # commands for OS X go here
alias flushdns="dscacheutil -flushcache && killall -HUP mDNSResponder" alias flushdns="sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder"
alias emptytrash="sudo rm -rfv /Volumes/*/.Trashes; sudo rm -rfv ~/.Trash; sudo rm -rfv /private/var/log/asl/*.asl"
alias r="open -a" alias r="open -a"
alias ydl="youtube-dl -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best'"
alias nmap_localnet="nmap -sP 10.0.3.0/24"
alias fetch="curl -O" alias fetch="curl -O"
alias htop="sudo htop" alias htop="sudo htop"
;; ;;
Linux) Linux)
# commands for Linux go here # commands for Linux go here