Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/data/data/com.termux/files/usr/bin/bash
- # 4/05/2017 Gabi Tiplea
- echo -e "Updating default packages\n"
- apt update && apt -y upgrade
- echo -e "Requesting acces to storage\n"
- termux-setup-storage
- sleep 5
- echo -e "Installing Python\n"
- apt install python
- echo -e "Installing Youtube-dl\n"
- pip install youtube-dl
- echo -e "Creating the Youtube folder to download the files\n"
- mkdir ~/storage/shared/Youtube
- echo -e "Creating youtube-dl folder for config\n"
- mkdir -p ~/.config/youtube-dl
- echo -e "Creating bin folder\n"
- mkdir ~/bin
- echo -e "Downloading and installing termux-url-opener\n"
- wget https://pastebin.com/raw/kvfQJWuH -O ~/bin/termux-url-opener
- dos2unix ~/bin/termux-url-opener
- echo -e "\n"
- echo -e "\n"
- echo -e "Downloaded Files will be found in Youtube Folder in internal storage \n"
- echo -e "\n"
- echo -e "Copyright 2017 Gabi Tiplea Edited By Al Tasin\n"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement