]> git.donarmstrong.com Git - bin.git/blob - audio_from_youtube
use cmd_exists and test for multiple MUAS
[bin.git] / audio_from_youtube
1 #!/bin/bash
2
3 for youtube in "$@"; do
4     youtube-dl --extract-audio "${youtube}";
5 done;
6