scpHow to run SCP in verbose mode?
To run SCP in verbose mode, use the -v
flag. For example:
scp -v <source> <destination>
This will output the progress of the file transfer, including the amount of data transferred, the speed of the transfer, and the estimated time remaining.
The -v
flag can be combined with other flags, such as -r
for recursive transfer, -P
for port number, and -C
for compression.
Parts of the code:
-v
: flag to enable verbose mode<source>
: the file or directory to be transferred<destination>
: the location to which the file or directory will be transferred
Helpful links
More of Scp
- Running SCP in quiet mode
- How to transfer files recursively using SCP?
- How to show progress when using SCP?
- How to overwrite files using SCP?
- Is it possible to SCP files in parallel?
- How to automatically create destination directory when using SCP?
- How to use an SSH key when using SCP?
- How to use a different port when using SCP?
- How to transfer files using wildcards with SCP?
See more codes...