]> git.donarmstrong.com Git - bin.git/blob - audio_from_youtube
make ping only ping once, and wait for a max of three seconds for a response
[bin.git] / audio_from_youtube
1 #!/bin/bash
2
3 for youtube in "$@"; do
4     youtube-dl --extract-audio "${youtube}";
5 done;
6