a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/utils/cCp/cCp.c src/utils/cCp/cCp.c index 6a86302..e13d7a4 100644 --- src/utils/cCp/cCp.c +++ src/utils/cCp/cCp.c @@ -1,21 +1,20 @@ /* cCp - copy a file to the cluster fairly efficiently. */ #include "common.h" #include "obscure.h" #include "dystring.h" -static char const rcsid[] = "$Id: cCp.c,v 1.2 2003/05/06 07:41:04 kate Exp $"; void cpFile(char *source, char *destHost, char *destFile) /* Execute scp command to copy source file to host. */ { struct dyString *dy = newDyString(512); dyStringPrintf(dy, "scp %s %s:/%s", source, destHost, destFile); system(dy->string); printf("%s\n", dy->string); freeDyString(&dy); } void sshSelf(char *hostList, char *host, int start, int count, char *destFile) /* Execute ssh command to invoke self. */ { struct dyString *dy = newDyString(512);