Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env bash
- find . -maxdepth 1 -type f -name "*.txt" -user $UID -ls | wc -l
- #!/usr/bin/env bash
- 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