Skip to content

Instantly share code, notes, and snippets.

@RyanBreaker
Created August 9, 2017 15:07
Show Gist options
  • Select an option

  • Save RyanBreaker/d09cd7aa81ae3b92cc3e578bbe434926 to your computer and use it in GitHub Desktop.

Select an option

Save RyanBreaker/d09cd7aa81ae3b92cc3e578bbe434926 to your computer and use it in GitHub Desktop.
set file ~/.lastapt
# Update packages with apt-get
function aptup
sudo apt-get update; and sudo apt-get dist-upgrade
end
# Day of week, e.g. Wed
function shortdate
date +%a
end
# Update $file with shortdate
function updatelastapt
shortdate > $file
end
touch $file
if test (cat $file) != (shortdate)
aptup
end
updatelastapt
clear
# Pretty intro
fortune -s | cowsay | lolcat
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment