Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <search command> | grep file.name
  2.  
  3. /home/current/Desktop/file.name
  4. /etc/program/src/file.name
  5.  
  6. ls -alR $PWD/
  7.  
  8. ls -ault `find $PWD/ -type f` | grep file.name
  9.  
  10. find $PWD/ -type f -name file.name -printf '%M %u %g %st%at%prn'
  11.  
  12. myspecialfinder() {
  13. find $PWD/ -type f -name "$1" -printf '%M %u %g %st%at%prn'
  14. }
  15.  
  16. myspecialfinder file.name
  17.  
  18. --tree -ifpugDs $PWD-- etc.
  19.  
  20. tree -if "$PWD"
  21.  
  22. /home/he/Documents/00 - Writing/02 The Rapture of the Maiden/0 - Text/25th/Rapture, pt 1-4, ch 01-20 old.txt,
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement