Fix silly mistake

This commit is contained in:
Jeffrey Serio 2022-07-20 19:39:51 -05:00
parent 6b3002edf6
commit c57e04c615

View File

@ -6,11 +6,11 @@
if test -x "$(command -v exa)"; then if test -x "$(command -v exa)"; then
alias ls="exa" alias ls="exa"
fi fi
alias l="exa -lFhg" alias l="ls -lFhg"
alias la="exa -a" alias la="ls -a"
alias ll="exa -lg --git" alias ll="ls -l"
alias lal="exa -alg --git" alias lal="ls -al"
alias ldot="exa -gld .*" alias ldot="ls -gld .*"
alias lse="/bin/ls -lZ" alias lse="/bin/ls -lZ"
lgn() { exa --tree --level=$1 ; } 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 ## copy SSH pubkey to clipboard
alias pubkey="more ~/.ssh/id_ed25519.pub | xclip -selection clipboard | echo '==> SSH public key copied'" 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 ## display disk usage with dust
alias dud="dust --depth 1 -w 88" 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" alias lsockT="sudo lsof -nP | grep TCP"
## logs directory ## logs directory
alias lslog="ls /var/log/" alias logs="ls /var/log/"
## reboot/poweroff ## reboot/poweroff
alias rbt="sudo systemctl reboot" alias rbt="sudo systemctl reboot"