Skip to content

Instantly share code, notes, and snippets.

@daryllukas
Last active April 20, 2016 10:46
Show Gist options
  • Save daryllukas/5fa294df854a241134da to your computer and use it in GitHub Desktop.
Save daryllukas/5fa294df854a241134da to your computer and use it in GitHub Desktop.

Display contents of config file with comments and newlines

egrep -v ^# /path/to/config/file.conf | grep -v ^$

dump/output/list Linux password expiry info for all users

A command like this should show you the expiration status for all accounts defined in your /etc/passwd/ file
cut -f 1 -d: /etc/passwd | xargs -n 1 -I {} bash -c " echo {} ; chage -l {}"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment