Removed old or useless aliases

This commit is contained in:
2026-02-16 15:22:52 -05:00
parent 3698f3c87b
commit b0936cb743

View File

@@ -28,29 +28,9 @@ alias extip='curl -s -4 icanhazip.com'
# Memory Pigs (top 10) # Memory Pigs (top 10)
alias mempigs='ps aux | awk '\''{print $6/1024 " MB\t\t" $11 " " $12}'\'' | sort -n | tail -10' alias mempigs='ps aux | awk '\''{print $6/1024 " MB\t\t" $11 " " $12}'\'' | sort -n | tail -10'
# dir -v (part of pushd/popd)
alias dir='dir -v'
# send things to termpad # send things to termpad
# with httpie # with httpie
alias tph=' http https://termpad.planethawleywood.com' alias tph=' http https://termpad.planethawleywood.com'
# with cURL # with cURL
alias tpc=' curl --data-binary @- https://termpad.planethawleywood.com' alias tpc=' curl --data-binary @- https://termpad.planethawleywood.com'
# Do lots of things with FZF
# CD with the help of fzf
alias cdf='cd ~ && cd "$(find . -type d -print0 | fzf --read0 --print0)"'
# VIM
alias vimf='vim "`fzf`"'
# LESS
alias lessf='less "`fzf`"'
# CAT
alias catf='cat "`fzf`"'
# GLOW
alias glowf='glow "`fzf`"'