File Transfer (in-progress)
scp
Allows you to transfer files between a local and remote host. It does this by leveraging
ssh
.Shares the same syntax as the normal
cp
command.
# Transfer from local computer to remote computer
scp <source file> <username>@<remote host>:<destination>
scp agenda.txt [email protected]:/home/asoberan/unxiclass
# Transfer from remote computer to local computer
scp <username>@<remote host>:<source file> <destination>
scp [email protected]:/home/asoberan/arrayDat.txt .
Last updated
Was this helpful?