This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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.. |
NewerOlder