In Linux, files can be uploaded directly from the client to the server. Command Format:
SCP files user @ server: filepath
Explanation:
Files files to be uploaded can contain multiple files, which are separated by spaces. You can also use *. filetype to upload all files of a certain type.
User: username used to log on to the server
Server server name (IP address or domain name)
The target path of the filepath to be uploaded to the server (note that this user must have the read and write permissions on this path)
If you download files from other Linux systems to a local computer, you can use:
SCP user @ server: Files client_file_path
Explanation:
User: username used to log on to the server
Server server name (IP address or domain name)
Files files to be downloaded
Client_file_path
In Linux, you can also download files from the Internet using commands. Command Format:
Lftp-c "pget-N 5 http: // downpath"
Explanation:
Lftp File Download command, transmitted through FTP Channel
Pget-N 5 O is not clear about the meaning here -_-
Http: // downpathConnection address of the file to be downloaded