Advertisement
adamchilcott

initTermux.sh

Mar 12th, 2021
671
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.40 KB | None | 0 0
  1. #!/usr/bin/env bash
  2.  
  3. ########
  4. # Termux
  5. ########
  6.  
  7. pkg update && pkg upgrade
  8. apt update && apt upgrade
  9. termux-setup-storage
  10. pkg install aria2 python ffmpeg
  11. pip install youtube-dl
  12.  
  13. #############
  14. # START NOTES
  15. #############
  16.  
  17. ## Reference:
  18. ## <https://wiki.termux.com/wiki/Termux-setup-storage>
  19. ## <https://github.com/termux/termux-packages/issues/604>
  20.  
  21. ###########
  22. # END NOTES
  23. ###########
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement