Displaying 2 results from an estimated 2 matches for "1hvco".
Did you mean:
hvco
2002 Feb 05
3
COPY_SIZE #define
...[file]]\n");
+ " [-B bufsize] [-S program] [user@]host[:file [file]]\n");
exit(1);
}
@@ -122,8 +123,11 @@ main(int argc, char **argv)
ll = SYSLOG_LEVEL_INFO;
infile = stdin; /* Read from STDIN unless changed by -b */
- while ((ch = getopt(argc, argv, "1hvCo:s:S:b:F:")) != -1) {
+ while ((ch = getopt(argc, argv, "1hvCo:s:S:b:F:B:")) != -1) {
switch (ch) {
+ case 'B':
+ COPY_SIZE = atoi(optarg);
+ break;
case 'C':
addargs(&args, "-C");
break;
2001 Sep 10
0
[PATCH] quick hack for 'resume' support in sftp
...rr, "usage: sftp [-1vCr] [-b batchfile] [-osshopt=value] [user@]host[:file [file]]\n");
exit(1);
}
***************
*** 167,173 ****
infile = stdin; /* Read from STDIN unless changed by -b */
debug_level = compress_flag = 0;
! while ((ch = getopt(argc, argv, "1hvCo:s:S:b:")) != -1) {
switch (ch) {
case 'C':
compress_flag = 1;
--- 168,174 ----
infile = stdin; /* Read from STDIN unless changed by -b */
debug_level = compress_flag = 0;
! while ((ch = getopt(argc, argv, "1hvCro:s:S:b:")) != -1) {
switch (c...