Last change
on this file since 36998 was 36998, checked in by davidb, 4 months ago |
Tweaks after testing
|
-
Property svn:executable
set to
*
|
File size:
294 bytes
|
Line | |
---|
1 | #!/bin/bash
|
---|
2 |
|
---|
3 | echo "Copying Items/HMS_* directories to ../import"
|
---|
4 |
|
---|
5 | for full_d in Items/HMS_* ; do
|
---|
6 | d=${full_d##*/}
|
---|
7 | if [ -d ../import/$d ] ; then
|
---|
8 | echo " Removing pre-existing ../import/$d"
|
---|
9 | /bin/rm -r ../import/$d
|
---|
10 | fi
|
---|
11 |
|
---|
12 | echo " Copying $d"
|
---|
13 | /bin/cp -r $full_d ../import/.
|
---|
14 | done
|
---|
15 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.