8 lines
170 B
Bash
Executable File
8 lines
170 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -eou pipefail
|
|
|
|
echo "$1" | wget-titles-from-urls >> titles.txt
|
|
echo "$1" | youtube-audio
|
|
standardize-music
|
|
ls -Art | tail -n 1 | xargs -d '\n' kid3
|