Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

upload large file to remote server in linux

# Copy a file from remote server to local
$ scp remotehost:<remote_source> <local_destination>

## Upload local file to remote server from linux
# For small file
$ scp <local_source> remotehost:<remote_destination>

# For big file
$ rsync -avzP <local_source> remotehost:<remote_destination>
Comment

PREVIOUS NEXT
Code Example
Shell :: how to do a conditional check in shell 
Shell :: modify read only file 
Shell :: List given directory size, directories, and files bash 
Shell :: cffi not installed in dockerfile 
Shell :: powershell send message to all currently logged on users 
Shell :: requirements github 
Shell :: Continuous bash script to do tasks 
Shell :: print each filename in a newline in ls 
Shell :: vscode regex for url 
Shell :: nx scaffolding 
Shell :: python subprocess.check_call 
Shell :: tag stale git branches to remove them but be able to restore them if necessary 
Shell :: Do The Right eXtraction 
Shell :: fedora netflix 
Shell :: docker run +"--entrypoint" args 
Shell :: ubuntu show RLIMIT_NOFILE 
Shell :: intellij in ununtu 
Shell :: install ponylang 
Shell :: How to install google consent script for CMP banner 
Shell :: github settings loin 
Shell :: powershell cat equivalent 
Shell :: ssh open gui app on host 
Shell :: aws cli donwlaod lmvda 
Shell :: git checkout stack 
Shell :: kubenetes repo 
Shell :: git cherry pick chain 
Shell :: instsall typo3 
Shell :: eks cluster command for own CNI deployment 
Shell :: docker compose share gpu 
Shell :: lxde autostart 
ADD CONTENT
Topic
Content
Source link
Name
8+6 =