Skip to content

Instantly share code, notes, and snippets.

@Gram21
Last active February 19, 2023 07:34
Show Gist options
  • Save Gram21/58b28b59f531e9640e19 to your computer and use it in GitHub Desktop.
Save Gram21/58b28b59f531e9640e19 to your computer and use it in GitHub Desktop.
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