Answers for "where does scp put files"

5

scp download file

scp remote_username@remote_addr:/remote/path/file.txt .
Posted by: Guest on March-03-2020
2

scp file

scp [source file] [destination]
scp file.txt user@ip:/Desktop/

For directories, add the -r tag
scp -r [source dir] [destination]
scp -r dir/ user@ip:/Desktop/
Posted by: Guest on May-02-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language