Secure Copy Protocol (SCP)
Secure copy protocol is a means of securely transferring computer files between a local host and a remote host or between two remote hosts. It is based on the Secure Shell protocol. "SCP" commonly ref
Transferring from remote to host:
sudo scp [email protected]:/home/john/evidence-output* /homeCopy the remote file to the localhost:
scp [email protected]:<remote_file> /some/local/directoryCopy the local file to the remote host:
scp <local_file> [email protected]:/some/remote/directoryLast updated
Was this helpful?