Skip to content
Snippets Groups Projects

allow scripts to be passed to eic-shell

Merged Sylvester Joosten requested to merge fix_tutorial into master
1 file
+ 11
3
Compare changes
  • Side-by-side
  • Inline
+ 11
3
@@ -194,7 +194,7 @@ PREFIX=$PREFIX
@@ -194,7 +194,7 @@ PREFIX=$PREFIX
DISABLE_CVMFS_USAGE=${DISABLE_CVMFS_USAGE}
DISABLE_CVMFS_USAGE=${DISABLE_CVMFS_USAGE}
function print_the_help {
function print_the_help {
echo "USAGE: ./eic-shell [OPTIONS]"
echo "USAGE: ./eic-shell [OPTIONS] [ -- COMMAND ]"
echo "OPTIONAL ARGUMENTS:"
echo "OPTIONAL ARGUMENTS:"
echo " -u,--upgrade Upgrade the container to the latest version"
echo " -u,--upgrade Upgrade the container to the latest version"
echo " -n,--no-cvmfs Disable check for local CVMFS when updating. (D: enabled)"
echo " -n,--no-cvmfs Disable check for local CVMFS when updating. (D: enabled)"
@@ -202,7 +202,11 @@ function print_the_help {
@@ -202,7 +202,11 @@ function print_the_help {
echo ""
echo ""
echo " Start the eic-shell containerized software environment."
echo " Start the eic-shell containerized software environment."
echo ""
echo ""
echo "EXAMPLE: ./eic-shell"
echo "EXAMPLES: "
 
echo " - Start an interactive shell: ./eic-shell"
 
echo " - Upgrade the container: ./eic-shell --upgrade"
 
echo " - Execute a single command: ./eic-shell -- <COMMAND>"
 
echo ""
exit
exit
}
}
@@ -223,6 +227,10 @@ while [ \$# -gt 0 ]; do
@@ -223,6 +227,10 @@ while [ \$# -gt 0 ]; do
print_the_help
print_the_help
exit 0
exit 0
;;
;;
 
--)
 
shift
 
break
 
;;
*)
*)
echo "ERROR: unknown argument: \$key"
echo "ERROR: unknown argument: \$key"
echo "use --help for more info"
echo "use --help for more info"
@@ -259,7 +267,7 @@ fi
@@ -259,7 +267,7 @@ fi
export ATHENA_PREFIX=$PREFIX/local
export ATHENA_PREFIX=$PREFIX/local
export SINGULARITY_BINDPATH=$BINDPATH
export SINGULARITY_BINDPATH=$BINDPATH
$SINGULARITY exec $SIF eic-shell
$SINGULARITY exec $SIF eic-shell \$@
EOF
EOF
chmod +x eic-shell
chmod +x eic-shell
Loading