# To list the stashed modifications
git stash list
#To show files changed in the last stash
git stash show
#So, to view the content of the most recent stash, run
git stash show -p
#To view the content of an arbitrary stash, run something like
git stash show -p stash@{1}
while true; do echo ok | nc -l 8000; for i in 1 2 3 4; do printf '\a'; sleep 1; done; done
while true; do echo Coming! | nc -l 8000; for i in 1 2 3 4; do say "Lunch time!"; sleep 1; done; done
while true; do (echo ok | nc -q 1 -vlp 8000 2>&1; echo; date -u) | tee -a beeper.log; for i in 1 2 3 4; do printf '\a'; sleep 1; done & done