diff --git a/.aliases b/.aliases index 720d395..121904a 100644 --- a/.aliases +++ b/.aliases @@ -521,6 +521,12 @@ alias mkdir-random='mkdir $(cat /dev/urandom | tr -dc "a-zA-Z0-9" | fold -w 50 | ## yt-dlp Default Limit alias yt-dlp-limit="yt-dlp --limit-rate 5M -f 137+140 $1" +## yt-dlp 5M Limit +alias yt-dlp-limit-1m="yt-dlp --limit-rate 1M -f 137+140 $1" + +## yt-dlp 5M Limit +alias yt-dlp-limit-2m="yt-dlp --limit-rate 2M -f 137+140 $1" + ## yt-dlp 5M Limit alias yt-dlp-limit-5m="yt-dlp --limit-rate 5M -f 137+140 $1" @@ -529,10 +535,11 @@ alias yt-dlp-limit-10m="yt-dlp --limit-rate 10M -f 137+140 $1" ## yt-dlp 15M Limit alias yt-dlp-limit-15m="yt-dlp --limit-rate 15M -f 137+140 $1" + + #GO alias go=/usr/local/go/bin/go - ## Display all commands in this Alias file alias my-alias="cat ~/.aliases | grep -oP 'alias\s\K[^=]+' | sort -n"