search for: path1

Displaying 20 results from an estimated 69 matches for "path1".

Did you mean: path
1999 Jun 27
2
paste and path ?
Dear friends. I have trobpe with path. Below I have tried to paste a path and file name but it will not work > path <- "D:/rw0641/own/own/procedures/GFR_TIME" > path [1] "D:/rw0641/own/own/procedures/GFR_TIME" > path1 <- paste(path,"gfr.txt",sep="/") > path1 [1] "D:/rw0641/own/own/procedures/GFR_TIME/gfr.txt" -- this is good enough > data <- read.table("D:/rw0641/own/own/procedures/GFR_TIME/grf.txt",h=T) > dat1 <- read.table(path1,h=T) Error: "scan&...
2002 Oct 18
1
Patch: sftp client support of "ls [flags] [path [localfile]]" feature
...display would be nice here */ ! fprintf(fp1, "%s\n", fname); } xfree(fname); } if (g.gl_pathc) globfree(&g); + if (fp) + fclose(fp); return (0); } *************** *** 759,764 **** --- 799,806 ---- /* Path is optional */ if (get_pathname(&cp, path1)) return(-1); + if (get_pathname(&cp, path2)) + return(-1); break; case I_LLS: case I_SHELL: *************** *** 897,903 **** break; case I_LS: if (!path1) { ! do_globbed_ls(conn, *pwd, *pwd, lflag); break; } --- 939,945 ---- break; case I_LS:...
2002 Nov 05
0
[PATCH] Add getlink command to sftp
...Symlink remote file\n"); printf("lmkdir path Create local directory\n"); *************** *** 582,587 **** --- 585,591 ---- case I_CHDIR: case I_LCHDIR: case I_LMKDIR: + case I_GETLINK: /* Get pathname (mandatory) */ if (get_pathname(&cp, path1)) return(-1); *************** *** 682,687 **** --- 686,695 ---- case I_SYMLINK: path2 = make_absolute(path2, *pwd); err = do_symlink(conn, path1, path2); + break; + case I_GETLINK: + path1 = make_absolute(path1, *pwd); + err = do_getlink(conn, path1); break; case I_RM:...
2007 Aug 20
1
system() fails with fc.exe (PR#9868)
...racter(0) When I do the same from python 2.3, I get >>> import os >>> os.system("c:\\WINDOWS\\system32\\fc /?") Compares two files or sets of files and displays the differences between them FC [/A] [/C] [/L] [/LBn] [/N] [/OFF[LINE]] [/T] [/U] [/W] [/nnnn] [drive1:][path1]filename1 [drive2:][path2]filename2 FC /B [drive1:][path1]filename1 [drive2:][path2]filename2 /A Displays only first and last lines for each set of differences. /B Performs a binary comparison. /C Disregards the case of letters. /L Compares files as ASCII te...
2003 Oct 30
2
sftp client reget reput
...switch (cmdnum) { case I_GET: case I_PUT: +#ifdef REGET + case I_REGET: + case I_REPUT: +#endif if (parse_getput_flags(&cp, pflag)) return(-1); /* Get first pathname (mandatory) */ @@ -921,10 +956,24 @@ err = -1; break; case I_GET: +#ifdef REGET + err = process_get(conn, path1, path2, *pwd, pflag, 0); +#else err = process_get(conn, path1, path2, *pwd, pflag); +#endif break; case I_PUT: +#ifdef REGET + err = process_put(conn, path1, path2, *pwd, pflag, 0); + break; + case I_REGET: + err = process_get(conn, path1, path2, *pwd, pflag, 1); + break; + case I_REPUT...
2011 Aug 23
3
R system command does not work with objects/variables
Hello! with the R system command I would like to call a perl script which needs an input directory and an output directory in form of a path. When I put in the path directly it works. The script line looks as follows: system("perl '../path1' '../path2' '../path3'") If I store the path in a variable/object and call the perl script again it does not run and I don't know how to overcome that issue. p1 <- "../path1" p2 <- "../path2" p3 <- "../path3" system("perl...
2009 Sep 29
4
[Bug 1655] New: sftp is unhappy with asterisks in filenames
https://bugzilla.mindrot.org/show_bug.cgi?id=1655 Summary: sftp is unhappy with asterisks in filenames Product: Portable OpenSSH Version: 5.2p1 Platform: Other OS/Version: Mac OS X Status: NEW Severity: normal Priority: P2 Component: sftp AssignedTo: unassigned-bugs at mindrot.org
2019 Jan 09
2
distributed thinlto usage
...s, you will want to ensure that the final native link includes only those files selected by the linker. That is output in the file given to the "-Wl,-plugin-opt,thinlto-index-only=files.out" option. What we do is use that in combination with the '-Wl,-plugin-opt,thinlto-prefix-replace=path1;path2' option to simplify the final link invocation. Specifically, if you do something like: "-Wl,-plugin-opt,thinlto-index-only=files.out -Wl,-plugin-opt,thinlto-prefix-replace=path1;path2" for the indexing link step, the output files from the thin link will be written to a director...
2000 Oct 16
2
renaming an object
Say I have a file called exp.batch which contains 2 cols The first col contains names of R objects the user would like to use. The second col contains the file names which will be read in using read.table i.e. exp.batch may look like this..... name1 complex/filename/path1.txt name2 complex/filename/path2.txt name3 complex/filename/path3.txt name4 complex/filename/path4.txt I want to have a function which will read in the files and make them into the objects named in the 1st column - automatically (by just providing exp.batch) for(i in 1:nrow(exp.batch)){ tmp&l...
2019 Jan 09
2
distributed thinlto usage
...s, you will want to ensure that the final native link includes only those files selected by the linker. That is output in the file given to the "-Wl,-plugin-opt,thinlto-index-only=files.out" option. What we do is use that in combination with the '-Wl,-plugin-opt,thinlto-prefix-replace=path1;path2' option to simplify the final link invocation. Specifically, if you do something like: "-Wl,-plugin-opt,thinlto-index-only=files.out -Wl,-plugin-opt,thinlto-prefix-replace=path1;path2" for the indexing link step, the output files from the thin link will be written to a director...
2022 Nov 11
1
Memory leak, make_absolute_pwd_glob
We had one more report from Coverity Scan after we brought 9.1p1 into the FreeBSD base system. It complains that calls like "path1 = make_absolute_pwd_glob(path1, *pwd);" in sftp.c leak the allocation. All make_absolute_pwd_glob() calls but one are of that form, so perhaps have it consume and free the first arg, as below (and https://reviews.freebsd.org/D37253)? diff --git a/crypto/openssh/sftp.c b/crypto/openssh/sftp.c...
2023 Mar 04
3
Trying to diagnose incomplete file transfer
...d externally. As a result, I am currently using the 'split' command to break the files into 1-GB "chunks" (ex.: foo.tgz.aa, foo.tgz.ab, ...). For the rsync transfer, I am using the following options: rsync -az \ -e "ssh ..." \ --link-dest=/local/path1 \ --link-dest=/local/path2 \ --remove-source-files \ user at remote:/path/to/files \ /local/path1/ where '-e "ssh ..."' is the set of SSH options (for tunneling, etc.). '--link-dest=/local/path1' refers to a local directory that might...
2008 Jul 29
1
rsync --delete* Bug or feature-request
Hello, I'm trying to do a differential backup. Each commands/scripts are launch on backup server side. - rsync-ref: 1 script perform a complete backup to a directory "ref". something like that: rsync --archives \ station:/path1/ /servbasepath/ref/servpath1/ - rsync-diff: 1 script perform a differential backup to a directory "diff". something like that: rsync --archives \ --compare-dest=/servpath1/ \ --delete \ station:/path1/ /servbasepath/diff/servpath1/ See the following scenari...
2006 Jan 09
4
Engine install problems with OS X
...OPFIND of ''/public/plugins'': Could not resolve hostname `svn.substance-it.co.uk'': No address associated with nodename (http:// svn.substance-it.co.uk) export: Create an unversioned copy of a tree. usage: 1. export [-r REV] URL[@PEGREV] [PATH] 2. export [-r REV] PATH1[@PEGREV] [PATH2] 1. Exports a clean directory tree from the repository specified by URL, at revision REV if it is given, otherwise at HEAD, into PATH. If PATH is omitted, the last component of the URL is used for the local directory name. 2. Exports a clean directory tree...
2019 Jan 08
2
distributed thinlto usage
I am trying to work through the usage of thinlto for distributed builds. Here is the simple thinlto usage, just add -flto=thin everywhere, easy: clang++ -flto=thin -O3 -c -o CreateWay_.o -DSPEC_CPU -DNDEBUG -DSPEC_CPU_LITTLE_ENDIAN -Wno-dangling-else CreateWay_.cpp clang++ -flto=thin -O3 -c -o Places_.o -DSPEC_CPU -DNDEBUG -DSPEC_CPU_LITTLE_ENDIAN
2009 Jan 09
4
Extracting File Basename without Extension
Dear all, The basename() function returns the extension also: > myfile <- "path1/path2/myoutput.txt" > basename(myfile) [1] "myoutput.txt" Is there any other function where it just returns plain base: "myoutput" i.e. without 'txt' - Gundala Viswanath Jakarta - Indonesia
2009 Feb 12
2
[patch] hard link protocol extension for sftp
...pp, int *pflag, } break; case I_RENAME: + case I_LINK: case I_SYMLINK: if (argc - optidx < 2) { error("You must specify two paths after a %s " @@ -1250,6 +1254,11 @@ parse_dispatch_command(struct sftp_conn path2 = make_absolute(path2, *pwd); err = do_rename(conn, path1, path2); break; + case I_LINK: + path1 = make_absolute(path1, *pwd); + path2 = make_absolute(path2, *pwd); + err = do_link(conn, path1, path2); + break; case I_SYMLINK: path2 = make_absolute(path2, *pwd); err = do_symlink(conn, path1, path2); Index: ssh/PROTOCOL =====================...
2012 Nov 04
1
structural equations using sem package
...g sem to look at the direct effect of one variable on another but i am uncertain if i am progressing correctly. An example: covar1<-? matrix(c(0.4,-0.2,3,-0.2 , 0.3,-2 , 3 ,-2 , 60), nrow=3,byrow=T) rownames(covar1)<-colnames(covar1)<-c("endo","exo","med") path1<-matrix(c(? ? "exo -> endo",? "g1", NA, ????????????????????????? "exo -> med", "g2",? NA, ????????????????????????? "med -> endo", "g3", NA ??? ??? ??? ??? ??? ??? ??? "med<->med",NA,1, ??? ??? ??? ??? ??? ???...
2007 Nov 20
0
smb signing is incompatible with share level security !
...to #local master = no local master = Yes [homes] comment = Home Directories read only = No create mask = 0640 directory mask = 0750 browseable = No [printers] comment = All Printers path = /var/tmp create mask = 0700 guest ok = Yes printable = Yes #dirk [compartido] *comment = comentario *path = /path1/path1/path1 *username = user1, user2 read only = No create mask = 0777 directory mask = 0777 *For security reasons, some details have been changed....jejej Where tighten screws to resolve these errors ? Thanks for your help !!! -- javierPUNTOruizARROBAindufrialPUNTOcom PostMaster Cartagena-...
2008 Jul 21
2
sftp needs a long time for sending a filelist
Hello all Im using sftp 1:4.7p1-8ubuntu1.2 in a batchjob Ive noticed that sftp needs a long time for sending a filelist. The timespan increases exponential if many files are on the remoteserver. for example "ls -la *.txt" needs 10 seconds for 2000 files but needs 50 seconds for 4000 files. For 150.000 Files i have to wait 15 minutes for example but the