Use double quotes

This commit is contained in:
dabruh 2023-11-15 17:38:50 +01:00
parent 19c3047c78
commit 34ac6a1809
1 changed files with 4 additions and 4 deletions

View File

@ -6,21 +6,21 @@ alias \
ls="ls --color=auto" \
bc="bc -ql" \
cp="cp -iv" \
df='df -h' \
df="df -h" \
e="${EDITOR:-vim}" \
ffmpeg="ffmpeg -hide_banner" \
free='free -m' \
free="free -m" \
g="git" \
ka="killall" \
mkd="mkdir -pv" \
mv="mv -iv" \
rm="rm -vI" \
shrd="shred -zuvn3" \
tmux='tmux -f ~/.config/tmux/tmux.conf'
tmux="tmux -f ~/.config/tmux/tmux.conf"
# Misc
alias \
w='curl https://wttr.in/'
w="curl https://wttr.in/"
for cmd in code codium; do
command -v $cmd && alias $cmd="$cmd --password-store='gnome'"