Created
April 29, 2014 10:42
-
-
Save hakanensari/11396561 to your computer and use it in GitHub Desktop.
Pomodoro & Programming, Motherfucker Mashup
This file contains hidden or 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
#!/bin/bash | |
for i in {1..4} | |
do | |
for ITS in start stop | |
do | |
say "$ITS programming, motherfucker." | |
[[ $ITS = start ]] && sleep 1500 || sleep 300 | |
done | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment