diff --git a/OS/bash/progcheck/sol.sh b/OS/bash/progcheck/sol.sh new file mode 100755 index 0000000..13b874b --- /dev/null +++ b/OS/bash/progcheck/sol.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +folder="$@" + +echo "Checking $folder" + +x=`find "$folder" -type f -iname "[!aeiou]*"` + +for i in $x +do + echo "$i" +done