diff --git a/OS/bash/q2.sh b/OS/bash/q2.sh deleted file mode 100644 index a2c73c1..0000000 --- a/OS/bash/q2.sh +++ /dev/null @@ -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