mirror of https://gitlab.com/QEF/q-e.git
20 lines
307 B
Bash
Executable File
20 lines
307 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# run from directory where this script is
|
|
cd `dirname $0`
|
|
|
|
echo
|
|
echo "run all ESM examples: starting"
|
|
|
|
# run all examples
|
|
for example in run_example_ESM run_example_FCP run_example_GCSCF;
|
|
do
|
|
if test -f $example
|
|
then
|
|
sh $example
|
|
fi
|
|
done
|
|
|
|
echo
|
|
echo "run all ESM examples: done"
|