Advertisement
Guest User

Untitled

a guest
Dec 5th, 2013
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. bash-4.1$ touch one 'one and a half' two
  2.  
  3. bash-4.1$ IFS='\n' files=( $(find .) )
  4.  
  5. bash-4.1$ for f in ${files[@]}; do echo "~$f~"; done
  6. ~.
  7. ./o~
  8. ~e
  9. ./o~
  10. ~e a~
  11. ~d a half
  12. ./two~
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement