commit 7da86ad732062e83d73bf6cd4501f606ecabe789 Author: Nicolás A. Ortega Date: Sat Apr 23 02:03:59 2016 +0200 Added the initial source. Still have a long ways to go. diff --git a/ogg-converter.sh b/ogg-converter.sh new file mode 100755 index 0000000..e286660 --- /dev/null +++ b/ogg-converter.sh @@ -0,0 +1,8 @@ +#!/bin/bash +# Copyright (c) 2016 Nicolás A. Ortega +# License: GNU GPLv3 + +for f in $@ +do + echo "Converting $f to $f.ogg" +done