Advertisement
Soy_Estudiante

Untitled

Feb 1st, 2022 (edited)
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. #!/data/data/com.termux/files/usr/bin/bash
  2. # termuxbyte
  3.  
  4. echo -e "Updating default packages\n"
  5. apt update && apt -y upgrade
  6.  
  7. echo -e "Requesting acces to storage\n"
  8. termux-setup-storage
  9. sleep 5
  10.  
  11. echo -e "Installing python\n"
  12. packages install -y python
  13.  
  14. echo -e "Installing youtube-dl\n"
  15. yes | pip install youtube-dl
  16.  
  17. echo -e "Creating the Youtube folder to download the files\n"
  18. mkdir ~/storage/shared/Youtube
  19.  
  20. echo -e "Creating youtube-dl folder for config\n"
  21. mkdir -p ~/.config/youtube-dl
  22.  
  23. echo -e "Creating bin folder\n"
  24. mkdir ~/bin
  25.  
  26. echo -e "Downloading and installing termux-url-opener\n"
  27. wget http://pastebin.com/raw/2KGPqcw9 -O ~/bin/termux-url-opener
  28. dos2unix ~/bin/termux-url-opener
  29.  
  30.  
  31. echo -e "\n"
  32. echo -e "TERMUXBYTE\n"
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement