Changeset 37121 for gs3-installations/intermuse/trunk/sites/intermuse/collect/programmes-and-performers/prepare/02-COPY-TO-IMPORT.sh
- Timestamp:
- 2023-01-07T22:43:04+13:00 (3 months ago)
- Location:
- gs3-installations/intermuse/trunk/sites/intermuse/collect/programmes-and-performers
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
gs3-installations/intermuse/trunk/sites/intermuse/collect/programmes-and-performers/prepare/02-COPY-TO-IMPORT.sh
r36998 r37121 3 3 echo "Copying Items/HMS_* directories to ../import" 4 4 5 for full_d in Items/HMS_* ; do 5 #for full_d in Items/HMS_* ; do 6 for full_d in Items/*_*[0-9] ; do 6 7 d=${full_d##*/} 7 8 if [ -d ../import/$d ] ; then … … 10 11 fi 11 12 12 echo " Copying $d" 13 /bin/cp -r $full_d ../import/. 13 #echo " Copying $d" 14 #/bin/cp -r $full_d ../import/. 15 16 # Example of recursive copy that uses hardlinks for files 17 # rsync -av --link-dest="$PWD/a" a/ b 18 # 19 # For more details see (down near the bottom) 20 # https://unix.stackexchange.com/questions/202430/how-to-copy-a-directory-recursively-using-hardlinks-for-each-file 21 22 echo " Hardlink file recursive copying $d" 23 rsync -av --link-dest="$PWD/$full_d" $full_d/ ../import 24 25 14 26 done 15 27
Note:
See TracChangeset
for help on using the changeset viewer.