No description
| do-android-build.sh | ||
| do-flutter-build.sh | ||
| do-git-release.sh | ||
| LICENSE | ||
| README.md | ||
| wifi-capture.md | ||
Helpers
Scripts and snippets which aid in certain tasks and scenarios.
do-android-build.sh
Generates the build files for a Android project in Ansroid Studio, needed for release.
do-flutter-build.sh
Generates the build files for a Flutter project, needed for release.
do-git-release.sh
Creates and commits a new tagged release for a git repository.
wifi-capture.md
Instructions for how to capture wireless network traffic.
Installation
sudo cp -v do-android-build.sh /usr/local/bin
sudo cp -v do-flutter-build.sh /usr/local/bin
sudo cp -v do-git-release.sh /usr/local/bin
echo "alias do-android-build='/usr/local/bin/do-android-build.sh'" | tee -a ~/.bashrc.d/alias > /dev/null
echo "alias do-flutter-build='/usr/local/bin/do-flutter-build.sh'" | tee -a ~/.bashrc.d/alias > /dev/null
echo "alias do-git-release='/usr/local/bin/do-git-release.sh'" | tee -a ~/.bashrc.d/alias > /dev/null
source ~/.bashrc