]> git.donarmstrong.com Git - bin.git/blob - audio_from_youtube
make sshsendmail more complicated to avoid having a dropped connection send a truncat...
[bin.git] / audio_from_youtube
1 #!/bin/bash
2
3 for youtube in "$@"; do
4     youtube-dl --extract-audio "${youtube}";
5 done;
6