Skip to content

Instantly share code, notes, and snippets.

@Linkaan
Created August 8, 2015 11:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Linkaan/b42032c38a0ceb49fdc1 to your computer and use it in GitHub Desktop.
Save Linkaan/b42032c38a0ceb49fdc1 to your computer and use it in GitHub Desktop.
set limit = 100000
while true
do
set fsize = `du -b "$(ls | tail -1)" | cut -f 1`
if test $fsize -gt $limit
then
touch hooks/stop_record
touch hooks/start_record
fi
sleep 1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment