Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import os
- # Create target Directory if it doesn't exist
- if not os.path.exists('/content/drive/MyDrive/Cloud-Downloads'):
- os.mkdir('/content/drive/MyDrive/Cloud-Downloads')
- os.chdir('/content/drive/MyDrive/Cloud-Downloads')
- # Get input links from the user
- links = input("Enter the links (separated by spaces): ").split()
- for link in links:
- !wget -c {link} --no-check-certificate
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement