Created
December 4, 2014 16:36
-
-
Save chellem/58a610b6c91549ff0967 to your computer and use it in GitHub Desktop.
List all accounts on the system with a login shell of Csh, sorted alphabetically by login name and display a screen at a time
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat /etc/passwd | grep /bin/csh | cut -d ‘:’ -f1 | sort | less |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment