Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- archivo="/etc/passwd"
- while IFS= read -r linea;do
- # lee el fichero y solo imprime las lineas que tengan el itnerprete
- # bash definido para usuarios.
- echo "Usuario: $linea" | grep bash
- done < "$archivo"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement