Skip to content

Instantly share code, notes, and snippets.

@hakanensari
Created April 29, 2014 10:42
Show Gist options
  • Save hakanensari/11396561 to your computer and use it in GitHub Desktop.
Save hakanensari/11396561 to your computer and use it in GitHub Desktop.
Pomodoro & Programming, Motherfucker Mashup
#!/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