#!/usr/bin/env bash # # LAMMPS cohesive energy example test with dependencies # # Grab the model name from standard input stream (stdin) echo "Enter a KIM model name:" read modelname echo ${modelname} echo # Run LAMMPS using the in.lammps input file lammps -var modelname ${modelname} -in in.lammps