mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
21 lines
265 B
Bash
Executable File
21 lines
265 B
Bash
Executable File
#!/bin/bash
|
|
|
|
basedir=$(dirname $0)
|
|
cmd=$1
|
|
ef=$2
|
|
envfile=exmpl_test_envs
|
|
if [ ! -z $ef ]; then
|
|
$basedir/../util/list_tags -env $ef | tee $envfile
|
|
source $envfile
|
|
fi
|
|
|
|
s=0
|
|
if [ -e $cmd ]; then
|
|
$cmd
|
|
s=$?
|
|
fi
|
|
if [ -e $envfile ]; then
|
|
\rm -f $envfile
|
|
fi
|
|
exit $s
|