summaryrefslogtreecommitdiff
path: root/other/ssharp/scp.0
diff options
context:
space:
mode:
Diffstat (limited to 'other/ssharp/scp.0')
-rw-r--r--other/ssharp/scp.077
1 files changed, 77 insertions, 0 deletions
diff --git a/other/ssharp/scp.0 b/other/ssharp/scp.0
new file mode 100644
index 0000000..5ca7a87
--- /dev/null
+++ b/other/ssharp/scp.0
@@ -0,0 +1,77 @@
1
2SCP(1) System Reference Manual SCP(1)
3
4NAME
5 scp - secure copy (remote file copy program)
6
7SYNOPSIS
8 scp [-pqrvC46] [-S program] [-P port] [-c cipher] [-i identity_file] [-o
9 option] [[user@]host1:]file1 [...] [[user@]host2:]file2
10
11DESCRIPTION
12 scp copies files between hosts on a network. It uses ssh(1) for data
13 transfer, and uses the same authentication and provides the same security
14 as ssh(1). Unlike rcp(1), scp will ask for passwords or passphrases if
15 they are needed for authentication.
16
17 Any file name may contain a host and user specification to indicate that
18 the file is to be copied to/from that host. Copies between two remote
19 hosts are permitted.
20
21 The options are as follows:
22
23 -c cipher
24 Selects the cipher to use for encrypting the data transfer. This
25 option is directly passed to ssh(1).
26
27 -i identity_file
28 Selects the file from which the identity (private key) for RSA
29 authentication is read. This option is directly passed to
30 ssh(1).
31
32 -p Preserves modification times, access times, and modes from the
33 original file.
34
35 -r Recursively copy entire directories.
36
37 -v Verbose mode. Causes scp and ssh(1) to print debugging messages
38 about their progress. This is helpful in debugging connection,
39 authentication, and configuration problems.
40
41 -B Selects batch mode (prevents asking for passwords or passphrasM--
42 es).
43
44 -q Disables the progress meter.
45
46 -C Compression enable. Passes the -C flag to ssh(1) to enable comM--
47 pression.
48
49 -P port
50 Specifies the port to connect to on the remote host. Note that
51 this option is written with a capital `P', because -p is already
52 reserved for preserving the times and modes of the file in
53 rcp(1).
54
55 -S program
56 Name of program to use for the encrypted connection. The program
57 must understand ssh(1) options.
58
59 -o option
60 The given option is directly passed to ssh(1).
61
62 -4 Forces scp to use IPv4 addresses only.
63
64 -6 Forces scp to use IPv6 addresses only.
65
66AUTHORS
67 Timo Rinne <tri@iki.fi> and Tatu Ylonen <ylo@cs.hut.fi>
68
69HISTORY
70 scp is based on the rcp(1) program in BSD source code from the Regents of
71 the University of California.
72
73SEE ALSO
74 rcp(1), sftp(1), ssh(1), ssh-add(1), ssh-agent(1), ssh-keygen(1),
75 sshd(8)
76
77BSD Experimental September 25, 1999 2