Guest User

Untitled

a guest
Dec 14th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #/bin/sh
  2. CNT=$#
  3. if [ $CNT = 1 ] ; then
  4. echo "find . -name \"$1\" -print 2> /dev/null"
  5. find . -name $1 -print 2> /dev/null
  6. else
  7. echo "[Usage] : find_file.sh {file_name}"
  8. fi
Add Comment
Please, Sign In to add comment