8 lines
263 B
Bash
Executable File
8 lines
263 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")
|
|
mpv --fullscreen --volume=70 --no-config --script-opts=ytdl_hook-try_ytdl_first=yes $url
|