Fix silly mistake

This commit is contained in:
Jeffrey Serio 2022-07-20 19:39:51 -05:00
parent 6b3002edf6
commit c57e04c615
1 changed files with 9 additions and 6 deletions

View File

@ -6,11 +6,11 @@
if test -x "$(command -v exa)"; then
alias ls="exa"
fi
alias l="exa -lFhg"
alias la="exa -a"
alias ll="exa -lg --git"
alias lal="exa -alg --git"
alias ldot="exa -gld .*"
alias l="ls -lFhg"
alias la="ls -a"
alias ll="ls -l"
alias lal="ls -al"
alias ldot="ls -gld .*"
alias lse="/bin/ls -lZ"
lgn() { exa --tree --level=$1 ; }
@ -22,6 +22,9 @@ alias sgrep="grep -R -n -H -C 5 --exclude-dir={.git,.svn,CVS}"
## copy SSH pubkey to clipboard
alias pubkey="more ~/.ssh/id_ed25519.pub | xclip -selection clipboard | echo '==> SSH public key copied'"
## mosh
alias mosh="mosh -p 60001"
## display disk usage with dust
alias dud="dust --depth 1 -w 88"
@ -61,7 +64,7 @@ alias lsockU="sudo lsof -nP | grep UDP"
alias lsockT="sudo lsof -nP | grep TCP"
## logs directory
alias lslog="ls /var/log/"
alias logs="ls /var/log/"
## reboot/poweroff
alias rbt="sudo systemctl reboot"