Skip to content

Instantly share code, notes, and snippets.

@sajattack
Created June 15, 2024 04:42
Show Gist options
  • Save sajattack/ee3b20c5efa2a099a29e0777a8799ce9 to your computer and use it in GitHub Desktop.
Save sajattack/ee3b20c5efa2a099a29e0777a8799ce9 to your computer and use it in GitHub Desktop.
fastboot flash script
#!/bin/sh
for file in `ls -w 1 *.img`
do
stem=`basename $file .img`
echo $stem
fastboot flash $stem $file
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment