quantum-espresso/PW/examples/RISM_example/run_example

17 lines
241 B
Bash
Executable File

#!/bin/sh
echo
echo "run all RISM examples: starting"
# run all examples
for example in run_example_3D-RISM run_example_ESM-RISM;
do
if test -f $example
then
sh $example
fi
done
echo
echo "run all RISM examples: done"