added OS program check Q

This commit is contained in:
hello 2025-02-07 13:51:01 +05:30
parent 5bf4ac12da
commit 8b801cca2c

12
OS/bash/progcheck/sol.sh Executable file
View File

@ -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