Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- archivo="/ruta/al/fichero/de/suaurios"
- while IFS= read -r linea; do
- uid=$(echo $linea | cut -d ":" -f 3)
- if [ $uid -le 999 ]; then
- continue
- fi
- echo $linea
- done < "$archivo"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement