13 lines
132 B
Bash
13 lines
132 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
folder="$@"
|
||
|
|
||
|
echo "Checking $folder"
|
||
|
|
||
|
x=`find "$folder" -type f -iname "[!aeiou]*"`
|
||
|
|
||
|
for i in $x
|
||
|
do
|
||
|
echo "$i"
|
||
|
done
|