Advertisement
kolbka_

Untitled

Feb 12th, 2022
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #!/usr/bin/env bash
  2.  
  3. find . -maxdepth 1 -type f -name "*.txt" -user $UID -ls | wc -l
  4.  
  5.  
  6.  
  7. #!/usr/bin/env bash
  8.  
  9. find /etc/ -type f -name "*.conf" -printf '%f/' 2>/dev/null | tr '\n' '\0' | tr '/' '\n' | sort | head | tr '\0' '\n'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement