#!/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`

#Config
NPROCS=2

#loop over all residues
for i in {1..9}
do
echo $i
mv hbnum_r${i}-POPC.xvg hbnum_r0${i}-POPC.xvg
mv hbnum_r${i}-CHOL.xvg hbnum_r0${i}-CHOL.xvg
mv hbnum_r${i}-PW.xvg hbnum_r0${i}-PW.xvg


done

