scpRunning SCP in quiet mode
SCP (Secure Copy Protocol) is a network protocol used to securely transfer files between two computers. It can be run in quiet mode, which suppresses all output to the terminal.
Example code
scp -q <source> <destination>
Output example
No output
Code explanation
scp
: the command to run the Secure Copy Protocol-q
: the flag to run SCP in quiet mode<source>
: the file or directory to be copied<destination>
: the location to copy the file or directory to
Helpful links
More of Scp
- How to run SCP in verbose mode?
- How to transfer files recursively using SCP?
- Is it possible to SCP files in parallel?
- How to list files using SCP?
- How to use an SSH key when using SCP?
- How to transfer files using wildcards with SCP?
- How to show progress when using SCP?
- How to overwrite files using SCP?
- How to automatically create destination directory when using SCP?
See more codes...