Last active
May 24, 2016 22:52
-
-
Save miketheman/e8619f16303660c50d5335c700cb362a to your computer and use it in GitHub Desktop.
Bash function to diff most recent Chef backup. Place in `/etc/profile.d/chefdiff.sh`
This file contains 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
# Usage: `chefdiff <filename>` | |
chefdiff() { | |
p=`readlink -f $1` | |
f=`ls /var/chef/backup$p* | sort | tail -n 1` | |
diff -u $f $1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment