e70152e44cc66cc599ff6b699eb8adc07f3e656a
kent
  Sat May 24 21:09:34 2014 -0700
Adding Copyright NNNN Regents of the University of California to all files I believe with reasonable certainty were developed under UCSC employ or as part of Genome Browser copyright assignment.
diff --git src/utils/cCp/cCp.c src/utils/cCp/cCp.c
index ee2d9ca..02b589e 100644
--- src/utils/cCp/cCp.c
+++ src/utils/cCp/cCp.c
@@ -1,16 +1,19 @@
 /* cCp - copy a file to the cluster fairly efficiently. */
+
+/* Copyright (C) 2013 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
 #include "common.h"
 #include "obscure.h"
 #include "dystring.h"
 
 
 static void cCpFile(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);
 }