Created
February 25, 2023 01:39
-
-
Save jazlopez/d9628d7e7aa18e714d35ff0f2336b463 to your computer and use it in GitHub Desktop.
yt-dlp in loop bash script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
__URL__="" | |
while : | |
do | |
printf "${GREEN_FG}" | |
printf "╭─ \n" | |
printf "│ URL: \n" | |
printf "╰─○ \n" | |
tput cuu 2 | |
tput cuf 10 | |
read | |
printf "${RESET}" | |
yt-dlp "${REPLY}" | |
sleep 1 | |
done; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment