#!/bin/bash
#
# Code by  venkentom@gmail.com
#
# Licenced by the GPL General Public License
# Have a look at:
# http://www.gnu.org/copyleft/gpl.html
# For more information about the GPL License
#
# I am not responsible for what this code does to your hw/sw/mind
# Use at your own risk
# 

#Put gromacs commands after this line

DIR=`pwd`

for i in {01..100}
do

j=$(printf "%02d" $i)

if [ -f ${j}/assemble.gro ];
then
   echo " "
else
   echo "File ${j}/assemble.gro does not exists"
fi

done


