From ace5dcc99e79285bcd729ad25884de6fc9353e70 Mon Sep 17 00:00:00 2001 From: Root THC Date: Fri, 12 Jul 2024 21:43:04 +0100 Subject: [PATCH] more aliases --- tools/hackshell.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tools/hackshell.sh b/tools/hackshell.sh index 7d00136..335e506 100755 --- a/tools/hackshell.sh +++ b/tools/hackshell.sh @@ -635,6 +635,15 @@ hs_init_alias() { alias vi="vi -i NONE" alias vim="vim -i NONE" alias screen="screen -ln" + + alias l='ls -Alh' + alias lt='ls -Alhrt' + alias lss='ls -AlhrS' + alias psg='ps alxwww | grep -i -E' + alias lsg='ls -Alh --color=always | grep -i -E' + alias cd..='cd ..' + alias ..='cd ..' + command -v curl >/dev/null && curl --help curl | grep -i proto-default && alias curl="--proto-default https" }