Guest User

Untitled

a guest
Jan 17th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. find /opt/projectname/bin -type f /opt/projectname/bin -prune -o -print
  2. find: missing conjunction
  3.  
  4. /opt/projectname/bin/file_1_is_printed
  5. /opt/projectname/bin/file_2_is_printed
  6. /opt/projectname/bin/directory_within_bin/some_file_should_not_be_printed
  7. /opt/projectname/bin/directory_2_within_bin/some_file_2_should_not_be_printed
  8.  
  9. /usr/bin/find:
  10. find.c $Date: 2011/08/12 15:04:36 $Revision: r11.31/4 PATCH_11.31 (PHCO_42158)
  11. libcpio.c $Date: 2008/05/27 16:08:10 $Revision: r11.31/2 PATCH_11.31 (PHCO_36666)
  12. $Revision: @(#) find R11.31_BL2011_0923_2 PATCH_11.31 PHCO_42158
  13.  
  14. find /opt/projectname/bin/. -name . -o -type d -prune -o -print
  15.  
  16. find /opt/projectname/bin -path '/opt/projectname/bin/*/*' -prune -o -type f -print
  17.  
  18. find /opt/projectname/bin/* -type f -print -o -prune
Add Comment
Please, Sign In to add comment