Skip to content

Instantly share code, notes, and snippets.

@cbdelavenne
Created June 16, 2016 16:36
Show Gist options
  • Save cbdelavenne/fafbf8f05d12796c3608f85f72452c9a to your computer and use it in GitHub Desktop.
Save cbdelavenne/fafbf8f05d12796c3608f85f72452c9a to your computer and use it in GitHub Desktop.
MacOS X watch script
#!/bin/bash
# usage: watch.sh <your_command> <sleep_duration>
while :;
do
clear
date
$1
sleep $2
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment