Skip to content

Commit

Permalink
added an un-install command
Browse files Browse the repository at this point in the history
  • Loading branch information
wanderingstan committed Apr 18, 2012
1 parent fd080bd commit 7ce5788
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions UN-INSTALL.command
@@ -0,0 +1,12 @@
#!/bin/bash

CRON_TEMP='/tmp/cron_temp'
CRON_NEW='/tmp/cron_new'
crontab -l >$CRON_TEMP
awk '$0!~/Lifeslice/ { print $0 }' $CRON_TEMP >$CRON_NEW
cat $CRON_NEW

echo "Lifeslice will no longer take hourly pictures."
echo "No pictures or data have been deleted. To do so, delete the ~/Lifeslice folder entirely."
echo
echo "Thank you for trying Lifeslice."

0 comments on commit 7ce5788

Please sign in to comment.