Last active
February 19, 2023 07:34
-
-
Save Gram21/58b28b59f531e9640e19 to your computer and use it in GitHub Desktop.
This file contains 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
r2repo="~/rand/radare2" | |
echo "Start updating and upgrading. This may take a while" | |
echo "****************************************************************" | |
echo "brew..." | |
brew update --verbose && brew upgrade && brew cleanup | |
echo "****************************************************************" | |
echo "pip..." | |
pip list --format=legacy --outdated | cut -d ' ' -f1 | xargs -n1 pip install -U | |
pip list --format=legacy --outdated | cut -d ' ' -f1 | xargs -n1 sudo -H pip install -U | |
echo "****************************************************************" | |
echo "radare2..." | |
${r2repo}/sys/user.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment