Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. find ./ -name "httpd.conf" | xargs grep 10.22.0.141 cut -d: -f3- | cut -d ' ' -f4 | sort | uniq -c
  2.  
  3. charl@rom11-TEST $ ls -latr
  4. total 124
  5. ...
  6. drwxrwxr-x 7 root root 4096 Mar 9 13:41 bofac-Wrapper
  7. drwxr-xr-x 7 root root 4096 Jul 29 2014 bofac-admin
  8. drwxrwxr-x 7 root root 4096 Jul 29 2014 bofac-chas-test
  9. drwxrwxr-x 7 root root 4096 Jul 29 2014 bofac-chasdps-test
  10. drwxrwxr-x 7 root root 4096 Oct 10 14:09 bofac-vpn-chas-test
  11. ...
  12.  
  13. grep -r --include "httpd.conf" "10.22.0.141" . | cut -d: -f3- |
  14. cut -d ' ' -f4 | sort | uniq -c
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement