8 lines
201 B
Bash
Executable File
8 lines
201 B
Bash
Executable File
#!/bin/sh
|
|
|
|
escaped_1_temp=$(tr -dc '[:print:]\n' <<< "$1")
|
|
escaped_1=$(sed 's/;//g; s/|//g; s/\[//g; s/\]//g' <<< "$escaped_1_temp")
|
|
|
|
url=$(tail -n 1 ./history/"$escaped_1")
|
|
yt-dlp -P ./downloads $url
|