Advertisement
metalx1000

Android TWRP boot script v1

Jan 2nd, 2020
842
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.23 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. dir="$HOME/.fbk/android/twrp"
  4. imgs="Nexus 5x\ttwrp-3.3.1-0-bullhead.img
  5. Moto X4  \ttwrp-3.3.1-0-payton.img
  6. Moto G 2014\ttwrp-3.3.1-0-titan.img"
  7.  
  8. img="$(echo -e "$imgs"|fzf|cut -d$'\t' -f2)"
  9.  
  10. fastboot boot $dir/$img
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement