Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

ubuntu download file command line

$ sudo apt install curl

Download and save the file using the source file name
$ curl –O [URL]

Download and save the file with a different name
$ curl –o [filename] [URL]


Download multiple files
$ curl -O [URL1] -O [URL2]

Download files using Wget
----------------------------
$ sudo apt-get install wget
$ wget [URL]
$ wget -O [filename] [URL]
Comment

PREVIOUS NEXT
Code Example
Python :: rename one dataframe column python 
Python :: combining 2 dataframes pandas 
Python :: check if response is 200 python 
Python :: python locks 
Python :: How to to efficiently find the first index in a sorted array of distinct numbers that is equal to the value at that index? 
Python :: grouping products for sales 
Python :: pandas create dataframe of ones 
Python :: find Carmichael number sage 
Python :: anova in python 
Python :: user input dictionary python 
Python :: print bold text python 
Python :: compute mfcc python 
Python :: open mat file in python 
Python :: discord bot python on reaction 
Python :: lru cache python 
Python :: pyspark save machine learning model to aws s3 
Python :: python search for string in file 
Python :: urllib.error.HTTPError: HTTP Error 403: Forbidden 
Python :: how to get current time in milliseconds in python 
Python :: matplotlib remove y axis label 
Python :: github black badge 
Python :: how to make player quit in python 
Python :: python print list items vertically 
Python :: django login redirect 
Python :: Print a nested list line by line 
Python :: python overwrite text that is already printed 
Python :: python random phone number 
Python :: python launch file 
Python :: remove substring python 
Python :: np random array 
ADD CONTENT
Topic
Content
Source link
Name
5+7 =