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 | |
| # Check for the existance of ~/.brewlastupgraded containing a unix timestamp of the last upgrade | |
| if [ -f ~/.brewlastupgraded ]; then | |
| lastupgraded=$(cat ~/.brewlastupgraded) | |
| else | |
| lastupgraded=0 | |
| fi | |
| # Check if the last upgrade was more than 7 days ago |