Displaying 11 results from an estimated 11 matches for "pqrvc46".
2000 Sep 02
1
[2.2.0p1] patch to get "scp -S prog" to work right + man page fix
...i:P:q46S")) != EOF)
+ while ((ch = getopt(argc, argv, "dfprtvBCc:i:P:q46S:")) != EOF)
switch (ch) {
/* User-visible flags. */
case '4':
--- scp.1.orig-2.2.0p1 Tue Aug 22 20:46:24 2000
+++ scp.1 Sat Sep 2 15:18:00 2000
@@ -20,6 +20,7 @@
.Sh SYNOPSIS
.Nm scp
.Op Fl pqrvC46
+.Op Fl S Ar ssh
.Op Fl P Ar port
.Op Fl c Ar cipher
.Op Fl i Ar identity_file
@@ -68,7 +69,7 @@
.It Fl p
Preserves modification times, access times, and modes from the
original file.
-.It Fl S
+.It Fl S Ar ssh
Name of program to use for the encrypted connection.
The program must understand...
2000 Aug 12
0
[PATCH] scp -S support
...t;,
+ ssh_program, verbose_mode ? " -v" : "",
host, cmd, src,
tuser ? tuser : "", tuser ? "@" : "",
thost, targ);
@@ -931,7 +937,7 @@
usage()
{
(void) fprintf(stderr,
- "usage: scp [-pqrvC46] [-P port] [-c cipher] [-i identity] f1 f2; or:\n scp [options] f1 ... fn directory\n");
+ "usage: scp [-pqrvC46] [-S ssh] [-P port] [-c cipher] [-i identity] f1 f2; or:\n scp [options] f1 ... fn directory\n");
exit(1);
}
--
tv@{{hq.yok.utu,havoc,gaeshido}....
2000 Oct 11
2
scp -L option
...,
+ highport ? "" : " -P" ,
host, cmd, src,
tuser ? tuser : "", tuser ? "@" : "",
thost, targ);
***************
*** 961,967 ****
usage()
{
(void) fprintf(stderr, "usage: scp "
! "[-pqrvC46] [-S ssh] [-P port] [-c cipher] [-i identity] f1 f2; or:\n"
" scp [options] f1 ... fn directory\n");
exit(1);
}
--- 971,977 ----
usage()
{
(void) fprintf(stderr, "usage: scp "
! "[-LpqrvC46] [-S ssh] [-P port] [-c cipher] [-i identity] f1...
2001 Feb 06
4
argv[0] => host feature considered harmful
OpenSSH still has this feature, SSH-1.2.27 no longer has it. Admittedly it
can be useful sometimes, even though I'd prefer this to be done using a
trivial shell wrapper, which would be the UNIX way of doing things.
Not being able to call OpenSSH's ssh by another name (say ``ssh1'') can get in
the way when having to maintain two versions of ssh in parallel because the
``ssh ->
2000 Apr 27
0
Patch for supporting "-L" option in scp
...case 'L':
+ use_non_privileged_port = 1;
+ break;
case '?':
default:
usage();
@@ -931,7 +940,7 @@
usage()
{
(void) fprintf(stderr,
- "usage: scp [-pqrvC46] [-P port] [-c cipher] [-i identity] f1 f2; or:\n scp
[options] f1 ... fn directory\n");
+ "usage: scp [-pqrvCL46] [-P port] [-c cipher] [-i identity] f1 f2; or:\n scp
[options] f1 ... fn directory\n");
exit(1);
}
-- System Information
Deb...
2000 Sep 01
0
scp -S patch fix
...t;dfprtvBCc:i:P:q46S")) != EOF)
+ while ((ch = getopt(argc, argv, "dfprtvBCc:i:P:q46S:")) != EOF)
switch (ch) {
/* User-visible flags. */
case '4':
--- scp.1~ Wed Aug 23 02:46:24 2000
+++ scp.1 Fri Sep 1 13:46:33 2000
@@ -20,6 +20,7 @@
.Sh SYNOPSIS
.Nm scp
.Op Fl pqrvC46
+.Op Fl S Ar ssh
.Op Fl P Ar port
.Op Fl c Ar cipher
.Op Fl i Ar identity_file
@@ -68,11 +69,6 @@
.It Fl p
Preserves modification times, access times, and modes from the
original file.
-.It Fl S
-Name of program to use for the encrypted connection.
-The program must understand
-.Xr ssh 1
-opt...
2001 Feb 27
1
scp hardwires location to ssh?
...of /usr/share/jon , then build the system V package
from there. most things work great, but somehow scp does not. it
seems have the location of ssh hardwired into it.
root at barf:~# which scp
/usr/local/bin/scp
root at barf:~# strings `which scp` | grep ssh
/usr/share/jon/bin/ssh
usage: scp [-pqrvC46] [-S ssh] [-P port] [-c cipher] [-i identity] f1
f2; or:
root at barf:~#
root at barf:~# scp jon at example.com:~/file .
/usr/share/jon/bin/ssh: No such file or directory
lost connection
root at barf:~#
obviously, /usr/share/jon/bin/ssh only exists on the machine i built
the package on, not the...
2001 Jul 22
1
[patch] add -1 and -2 options to scp
Hi,
Several people have asked that scp support the -1 and -2 options, so I
wrote this patch.
Cheers,
Matthew
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: scp.diff
Url: http://lists.mindrot.org/pipermail/openssh-unix-dev/attachments/20010722/7e096fab/attachment.ksh
-------------- next part --------------
--
"At least you know
2001 Sep 08
1
force SSH1 and SSH2
...] [-P port] [-c cipher] [-i identity] f1 f2\n"
" or: scp [options] f1 ... fn directory\n");
exit(1);
}
--- ./scp.1.org Sun Sep 9 00:03:53 2001
+++ ./scp.1 Sun Sep 9 00:05:56 2001
@@ -19,7 +19,7 @@
.Nd secure copy (remote file copy program)
.Sh SYNOPSIS
.Nm scp
-.Op Fl pqrvC46
+.Op Fl pqrvC1246
.Op Fl S Ar program
.Op Fl P Ar port
.Op Fl c Ar cipher
@@ -110,6 +110,14 @@
.It Fl o Ar option
The given option is directly passed to
.Xr ssh 1 .
+.It Fl 1
+Forces
+.Nm
+to use SSH1 only.
+.It Fl 2
+Forces
+.Nm
+to use SSH2 only.
.It Fl 4
Forces
.Nm
2000 Aug 18
0
[PATCH] Support symlinks in scp of openssh 2
...me know if I'm not doing this right.... I made a great
effort to limit the number of code lines changed, so as to minimize
the difficulty of understanding and accepting this patch.
Index: scp.1
--- scp.1.prev
+++ scp.1 Fri Aug 18 04:24:46 2000
@@ -20,5 +20,5 @@
.Sh SYNOPSIS
.Nm scp
-.Op Fl pqrvC46
+.Op Fl aLpqrvC46
.Op Fl P Ar port
.Op Fl c Ar cipher
@@ -69,4 +69,9 @@
.It Fl o Ar ssh_options
specify options to be passed to ssh. For example: "-o UsePriviledgePort=no"
+.It Fl a
+Archival copy. Shorthand for "-Lpr".
+.It Fl L
+Preserves symbolic links as such, instead...
2000 Aug 24
0
patch for a few things
...t on the remote machine.
+ .It Fl 1
+ Forces
+ .Nm
+ to try protocol version 1 only.
.It Fl 2
Forces
.Nm
*** ./scp.1.orig Tue Aug 22 20:46:24 2000
--- ./scp.1 Thu Aug 24 11:40:17 2000
***************
*** 19,25 ****
.Nd secure copy (remote file copy program)
.Sh SYNOPSIS
.Nm scp
! .Op Fl pqrvC46
.Op Fl P Ar port
.Op Fl c Ar cipher
.Op Fl i Ar identity_file
--- 19,25 ----
.Nd secure copy (remote file copy program)
.Sh SYNOPSIS
.Nm scp
! .Op Fl bpqrvCQS1246
.Op Fl P Ar port
.Op Fl c Ar cipher
.Op Fl i Ar identity_file
***************
*** 86,93 ****
--- 86,97 ----
debuggin...