8 lines
222 B
Bash
8 lines
222 B
Bash
|
#!/run/current-system/sw/bin/bash
|
||
|
|
||
|
youtube-dl "$1" \
|
||
|
--download-archive "~/Videos/YT/history.conf" \
|
||
|
--prefer-free-formats\
|
||
|
--write-description \
|
||
|
--output "~/Videos/YT/%(uploader)s/%(upload_date)s - %(title)s.%(ext)s"
|