Skip to content

Instantly share code, notes, and snippets.

View sweepies's full-sized avatar

Sweepy sweepies

View GitHub Profile
#!/bin/bash
USER=winterfox
PERM=0776
read -r -p "This will update paperclip.jar to the latest version. Continue? (y/n) " response
response=${response,,}
if [[ $response =~ ^(yes|y)$ ]]
then
echo Removing old paperclip.jar..
rm paperclip.jar
echo Downloading new jar..