You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Shreddit/shreddit

13 lines
280 B

#!/bin/sh
ROOT_DIR="/home/$USER/Shreddit"
cd $ROOT_DIR
echo "Running grab.py to get your history..."
python2 $ROOT_DIR/grab.py || exit 1
echo "Running kill.py to annihilate your history..."
python2 $ROOT_DIR/kill.py || exit 2
13 years ago
echo "Everything seemed to execute successfully."