Skip to content

Instantly share code, notes, and snippets.

@gammy
Created February 9, 2012 01:15
Show Gist options
  • Save gammy/1776193 to your computer and use it in GitHub Desktop.
Save gammy/1776193 to your computer and use it in GitHub Desktop.
Wait until bash script.
#!/bin/bash
while [ $(date +%R) != "$1" ]; do
sleep 1;
done
shift
$*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment