From d48a59e74b8317c3008f690584b9b2baf702fab3 Mon Sep 17 00:00:00 2001 From: Jan Jastrow Date: Fri, 8 Sep 2023 02:53:12 +0200 Subject: [PATCH] Minor cleanup --- zsh/alias | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/zsh/alias b/zsh/alias index 5e2a24c..cb49bd4 100644 --- a/zsh/alias +++ b/zsh/alias @@ -54,17 +54,13 @@ fi # youtube-dl(p) - Download only best MP4 alias ytmp4='ydl -f "bestvideo[ext=mp4]+bestaudio[ext=m4a]/mp4"' - -# rsync; archive, progress, partial, relative, humanreadable (add -z for compression) -alias rrsync='rsync -avhP' - # better scp alias bcp='rsync -avzuh --progress --partial' # generate pseudo-random hash alias random32='echo $(date +%s | md5sum | head -c 32)' -# tar +# tar extract alias untargz='tar -xzvf' # (macOS) start Firefox Profile manager @@ -75,7 +71,6 @@ fi # zspotify (Docker) alias zspotify='docker run -v ${HOME}/.zspotify:/root/.zspotify -v ${HOME}/Music:/root/Music -it jsavargas/zspotify' - # git alias gadd='git add' alias gclone='git clone'