Guest User

Untitled

a guest
Feb 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. root@recluse:~/foo# tree
  2. .
  3. |-- bar
  4. | `-- baz.doc
  5. |-- baz
  6. | |-- foo.doc
  7. | `-- quux
  8. `-- quux.doc
  9.  
  10. 3 directories, 3 files
  11. root@recluse:~/foo# find . -name *.doc
  12. ./quux.doc
  13. root@recluse:~/foo# mv quux.doc quux.doc.old
  14. root@recluse:~/foo# find . -name *.doc
  15. ./bar/baz.doc
  16. ./baz/foo.doc
Add Comment
Please, Sign In to add comment