Guest User

Untitled

a guest
Oct 20th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. echo assign variables
  4. HOST=**************
  5. USERNAME=*******
  6. PASSWORD=***************
  7.  
  8. cd ~/android/system/out/target/product/captivatemtd
  9. echo connect to FTP
  10. ftp -n $HOST <<EOD
  11. quote USER $USERNAME
  12. quote PASS $PASSWORD
  13. cd /CM7_builds
  14. delete update-cm-7.1.0-Captivate-KANG-signed.zip
  15. put update-cm-7.1.0-Captivate-KANG-signed.zip
  16. quit
  17. EOD
  18. exit 0
Add Comment
Please, Sign In to add comment