Skip to content

Instantly share code, notes, and snippets.

@whitmo
Last active August 29, 2015 14:21
Show Gist options
  • Save whitmo/bdbb52c22cd692bfecdf to your computer and use it in GitHub Desktop.
Save whitmo/bdbb52c22cd692bfecdf to your computer and use it in GitHub Desktop.
conditional update
function conditional_apt_update(){
if expr $(date +%s) - $(stat -c %Y /var/lib/apt/periodic/update-success-stamp) > $0
then
echo HI
fi
}
conditional_apt_update 10
@lazypower
Copy link

Very nice 🍻

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