From b0936cb743ef5ada734f47ee56a7eb0d35a2b9cf Mon Sep 17 00:00:00 2001 From: "chawley (overlook)" Date: Mon, 16 Feb 2026 15:22:52 -0500 Subject: [PATCH] Removed old or useless aliases --- .shell_aliases | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/.shell_aliases b/.shell_aliases index e0eee30..07d06ec 100644 --- a/.shell_aliases +++ b/.shell_aliases @@ -20,7 +20,7 @@ alias ll='ls -l' # long list # Extras alias ping='ping -c 5' # Stop pinging after 5 pings alias vi='vim' # use vim instead of vi -alias less='less -r' # repaint screen +alias less='less -r' # repaint screen # Get Ext IP alias extip='curl -s -4 icanhazip.com' @@ -28,29 +28,9 @@ alias extip='curl -s -4 icanhazip.com' # Memory Pigs (top 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 # with httpie alias tph=' http https://termpad.planethawleywood.com' # with cURL 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`"'