[Swift-commit] r7573 - SwiftApps/swift-galaxy/swift

ketan at ci.uchicago.edu ketan at ci.uchicago.edu
Thu Feb 6 15:39:59 CST 2014


Author: ketan
Date: 2014-02-06 15:39:58 -0600 (Thu, 06 Feb 2014)
New Revision: 7573

Modified:
   SwiftApps/swift-galaxy/swift/swiftforeachlist.sh
   SwiftApps/swift-galaxy/swift/swiftforeachrange.sh
Log:
slight refinement in postprocessing script

Modified: SwiftApps/swift-galaxy/swift/swiftforeachlist.sh
===================================================================
--- SwiftApps/swift-galaxy/swift/swiftforeachlist.sh	2014-02-05 15:05:19 UTC (rev 7572)
+++ SwiftApps/swift-galaxy/swift/swiftforeachlist.sh	2014-02-06 21:39:58 UTC (rev 7573)
@@ -86,7 +86,7 @@
 
 #`for i in \`find $HOME/swift-sandbox -type f\`; do echo "\`basename $i\` $i"; done`
 cat << EOF > $outlistfile
-`for i in \`find $outloc -type f\`; do echo "$i"; done`
+`for i in $(find $outloc -type f -iname "*.out"); do echo "$i"; done`
 EOF
 
 if [ "$EXITCODE" -ne "0" ]; then

Modified: SwiftApps/swift-galaxy/swift/swiftforeachrange.sh
===================================================================
--- SwiftApps/swift-galaxy/swift/swiftforeachrange.sh	2014-02-05 15:05:19 UTC (rev 7572)
+++ SwiftApps/swift-galaxy/swift/swiftforeachrange.sh	2014-02-06 21:39:58 UTC (rev 7573)
@@ -91,7 +91,7 @@
 #`for i in \`find $HOME/swift-sandbox -type f\`; do echo "\`basename $i\` $i"; done`
 #Populate output file
 cat << EOF > $outlistfile
-`for i in \`find $outloc -type f\`; do echo "$i"; done`
+`for i in $(find $outloc -type f -iname "*.out"); do echo "$i"; done`
 EOF
 
 #cleanup




More information about the Swift-commit mailing list