Advertisement
Soy_Estudiante

CV1

Sep 15th, 2022 (edited)
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. #!/data/data/com.termux/files/usr/bin/bash
  2.  
  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 ffmpeg\n"
  12. packages install -y ffmpeg
  13.  
  14. echo -e "Creating bin directory\n"
  15. mkdir ~/bin
  16.  
  17. echo -e "Creating convertedFiles directory\n"
  18. mkdir ~/storage/shared/convertedFiles
  19.  
  20. echo -e "Downloading and installing termux-file-editor\n"
  21. wget http://pastebin.com/raw/bCSzt9i5 -O ~/bin/termux-file-editor
  22. dos2unix ~/bin/termux-file-editor
  23.  
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement