Skip to content

Commit 3a8dc9e

Browse files
committed
merge shell scripts
2 parents 335f531 + 8f5041d commit 3a8dc9e

24 files changed

Lines changed: 25 additions & 23 deletions

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ Instructions:
3939
`./run_SearchCal-gui.sh`
4040
- run OIFitsExplorer GUI:
4141
`./run_OIFitsExplorer-gui.sh`
42+
- run OIFitsProcessor CLI:
43+
`./run_OIFitsProcessor.sh`
4244
- run LITpro GUI:
4345
`./run_LITpro-gui.sh`
4446
- run OImaging:

jmmc-tools/bin/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ echo "JAVA_TUNING: '$JAVA_TUNING'"
1414

1515
DIR="."
1616

17-
java $JAVA_TUNING $JAVA_OPTS -cp "$DIR/jmmc-tools-TRUNK-jar-with-dependencies.jar" $*;
17+
java $JAVA_TUNING $JAVA_OPTS -cp "$DIR/jmmc-tools-TRUNK-jar-with-dependencies.jar" "$@"
1818

jmmc-tools/bin/run_AppLauncher-gui.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# GUI AppLauncher
44
#
55

6-
bash run.sh fr.jmmc.smprun.AppLauncher $*;
6+
bash run.sh fr.jmmc.smprun.AppLauncher "$@"
77

jmmc-tools/bin/run_Aspro2-gui.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# GUI Aspro2
44
#
55

6-
bash run.sh fr.jmmc.aspro.Aspro2 $*;
6+
bash run.sh fr.jmmc.aspro.Aspro2 "$@"
77

jmmc-tools/bin/run_LITpro-gui.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# GUI LITpro
44
#
55

6-
bash run.sh fr.jmmc.mf.LITpro $*;
6+
bash run.sh fr.jmmc.mf.LITpro "$@"
77

jmmc-tools/bin/run_OIFitsExplorer-gui.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# GUI OIFitsExplorer
44
#
55

6-
bash run.sh fr.jmmc.oiexplorer.OIFitsExplorer $*;
6+
bash run.sh fr.jmmc.oiexplorer.OIFitsExplorer "$@"
77

jmmc-tools/bin/run_OIFitsProcessor.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# CLI OIFitsProcessor
44
#
55

6-
bash run.sh fr.jmmc.oitools.OIFitsProcessor $*;
6+
bash run.sh fr.jmmc.oitools.OIFitsProcessor "$@"
77

jmmc-tools/bin/run_OImaging-gui.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
# enable/disable using local docker image:
77
export JAVA_OPTS="-DRemoteExecutionMode.local=false"
88

9-
bash run.sh fr.jmmc.oimaging.OImaging $*;
9+
bash run.sh fr.jmmc.oimaging.OImaging "$@"
1010

jmmc-tools/bin/run_SearchCal-gui.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# GUI SearchCal
44
#
55

6-
bash run.sh fr.jmmc.sclgui.SearchCal $*;
6+
bash run.sh fr.jmmc.sclgui.SearchCal "$@"
77

jmmc-tools/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ echo "JAVA_TUNING: '$JAVA_TUNING'"
1414

1515
DIR="bin"
1616

17-
java $JAVA_TUNING $JAVA_OPTS -cp "$DIR/jmmc-tools-TRUNK-jar-with-dependencies.jar" $*;
17+
java $JAVA_TUNING $JAVA_OPTS -cp "$DIR/jmmc-tools-TRUNK-jar-with-dependencies.jar" "$@"
1818

0 commit comments

Comments
 (0)