summaryrefslogtreecommitdiff
path: root/bin/clone.csh
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-26 23:28:26 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-03-26 23:28:26 +0000
commit7726f2060f21b281a7b707a9d9b1eae06e5afd64 (patch)
tree57387cc637e385ac3196e27756dec403493b4de8 /bin/clone.csh
parent8b401094b211c296e56360d6cd8d97153d817296 (diff)
downloadATCD-7726f2060f21b281a7b707a9d9b1eae06e5afd64.tar.gz
This commit was manufactured by cvs2svn to create tag 'TAO-0_1_11'.TAO-0_1_11
Diffstat (limited to 'bin/clone.csh')
-rw-r--r--bin/clone.csh26
1 files changed, 0 insertions, 26 deletions
diff --git a/bin/clone.csh b/bin/clone.csh
deleted file mode 100644
index 1c14e912d64..00000000000
--- a/bin/clone.csh
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/csh
-
-set src_root=`pwd`
-set dst_root=`abspath $1`
-
-set subdirs=`find * -type d -print`
-
-mkdir $dst_root
-set files=`find * \( -type d -prune \) -o -type f -print`
-
-if ($#files) then
- ln $files $dst_root
-endif
-
-if ($#subdirs) then
- foreach subdir ($subdirs)
- cd $src_root
- mkdir $dst_root/$subdir
- cd $src_root/$subdir
- set files=`find * \( -type d -prune \) -o -type f -print`
- if ($#files) then
- ln $files $dst_root/$subdir
- endif
- end
-endif
-exit 0