Advertisement
Guest User

Untitled

a guest
May 1st, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. "${myfiletobesearched}"
  2.  
  3. myfile="My File [Official Awesome File].txt"
  4. find ./ -name "${myfile}" -type f
  5.  
  6. myfile="My File [Official Awesome File].txt"
  7. myfile=$(echo $myfile | sed -r 's/([|])/\1/g')
  8. find ./ -name "${myfile}" -type f
  9.  
  10. myfile="My File [Official Awesome File].txt"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement