13 lines
132 B
Bash
Raw Normal View History

2025-02-07 13:51:01 +05:30
#!/bin/bash
folder="$@"
echo "Checking $folder"
x=`find "$folder" -type f -iname "[!aeiou]*"`
for i in $x
do
echo "$i"
done