Delete OS/bash/q2.sh

This commit is contained in:
Aadit Agrawal 2025-01-17 10:46:44 +05:30
parent a11ede4385
commit af4130f9be

View File

@ -1,10 +0,0 @@
#!/bin/sh
echo "Which folder would you like to check?"
read folder
echo "Enter pattern/filename string to match"
read string
x=`find $folder -type f -iname "*$string*"`
for i in $x;do
echo "$i"
done