For long-running command line tasks
$ mysql < large_database_dump.sh | \ curl -X POST -d @- https://nudge.sh/YOUR_TOKEN
$ mysql < large_database_dump.sh | curl -X POST -d @- https://nudge.sh/YOUR_TOKEN
Text Message
Today 4:42pm
Your command-line task completed. See output at: https://nudge.sh/output/1dbf6334-8912-4c30-b8ec-b3ddd8dc792b
Five notifications free per day
Just enter your phone number to get your own code
More examples
# Don't store output $ node slow_script.js; curl https://nudge.sh/YOUR_TOKEN
# Notify after cron job has been run $ crontab -e 0 5 * * 1 tar -zcf /var/backup.tar.gz /home/ | curl -X POST -d @- https://nudge.sh/YOUR_TOKEN