├── README.md ├── XiaomiADBFastbootTools.jar └── xiaomi-adb-fastboot-tools.sh /README.md: -------------------------------------------------------------------------------- 1 | # XiaomiADBFastbootTools 2 | Reupload of Szaki's tools because they got deleted for some reason and I'm too lazy to search for 30 minutes EVERY TIME I need them! 3 | 4 | You will need to have Java installed. (Pretty sure it works with every Java version from 8 to the newest) 5 | If you are using Linux you may have to download adb and fastboot yourself. On Windows, it downloads them automatically. 6 | 7 | Sep 16 2023 8 | Added a launch sh script for all my penguin lovers & terminal warriors! 9 | -------------------------------------------------------------------------------- /XiaomiADBFastbootTools.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anormix/XiaomiADBFastbootTools/7bb86c289ba0096986b61f6f4be1a8cbeacb8ebd/XiaomiADBFastbootTools.jar -------------------------------------------------------------------------------- /xiaomi-adb-fastboot-tools.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Check if Java is installed 4 | if ! command -v java &> /dev/null; then 5 | echo "Java is not installed. Please install Java and try again." 6 | exit 1 7 | fi 8 | 9 | # Check if the JAR file exists 10 | jar_file="XiaomiADBFastbootTools.jar" 11 | if [ ! -f "$jar_file" ]; then 12 | echo "$jar_file not found in the current directory." 13 | exit 1 14 | fi 15 | 16 | # Run the Java JAR with command-line arguments 17 | java -jar "$jar_file" "$@" 18 | --------------------------------------------------------------------------------