Advertisement
metalx1000

Android TWRP boot script v2

Jan 2nd, 2020
862
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.27 KB | None | 0 0
  1. #!/bin/bash
  2. #https://filmsbykris.com
  3. #Copyright Kris Occhipinti January 2, 2020
  4. #GPLv3 - https://www.gnu.org/licenses/gpl-3.0.txt
  5. #https://youtu.be/N30Vp7oGLR8
  6.  
  7. dir="$HOME/.fbk/android/twrp"
  8. imgs="$(ls $dir)"
  9.  
  10. img="$(echo -e "$imgs"|fzf)"
  11.  
  12. fastboot boot $dir/$img
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement