Block-1B - TEST DIRECTORY SET-UP - TEST
Edited from Block-1B - TEST DIRECTORY SET-UP - TEST made by Diane Lambert to suit the F3E-Limb test
########################################################################## ## ## ## BLOCK 1B ## ## TEST DIRECTORY SET-UP - TEST ## ## (Originally for F3G but edited for F3E) ## ## ## ########################################################################## ## This block populates an F3 test sub-directory from the F3 orig sub-directory ## in readiness for sensitivity testing ## Assumptions: ## User has invoked a Bourne-Again Shell (bash) on ormacsrv1.lpl.arizona.edu ## User is a member of the group OREX\spc ## User has set up a skeleton directory in the following format: ## /SPC_Test/F3G-Nav/ ## ORex/ ## DATA/ ## base/ ## IMAGEFILES/ ## SHAPEFILES/ ## lsupport/ ## orig/ ## results/ ## test/ ## User has completed the processing steps comprising Block 1A - TEST DIRECTORY ## SET-UP - ORIG ## User inputs: ## testID: Name of the F3 test directory (for example, F3E-Limbs) ## subTestID: (if required) Identifier for sub-test work (for example, F3G1) ## blockID: User-specified identifier for typescript textfile name ## (for example, Block-1B-TestDirSetUp-Test-F3G1) # User inputs: export testID=F3E-Limbs #export subTestID=F3E1 export subTestID=F3E2 #export subTestID=F3E3 #export subTestID=F3E4 #export subTestID=F3E5 #export subTestID=F3E6 #export subTestID=F3E7 #export subTestID=F3E8 export blockID=Block-1B-TestDirSetUp-Test-${subTestID} # Set-Up cd /SPC_Test/$testID script # Display user inputs echo $testID echo $subTestID echo $blockID date pwd ls -l rsync --delete -ha orig/ test/ ls -l test # Block Complete date exit # Save block log if [ ! -d /SPC_Test/$testID/log ]; then mkdir /SPC_Test/$testID/log fi # OPTION 1: OVERWRITE TYPESCRIPT LOG mv typescript /SPC_Test/$testID/log/log-typescript-${blockID} # END OF OPTION 1 # OPTION 2: APPEND TYPESCRIPT LOG cat typescript >> /SPC_Test/$testID/log/log-typescript-${blockID} # END OF OPTION 2