#!/bin/bash
#########################
# Job name to be reported by qstat
##############################################################################
#$ -N p0.01N125
#$ -S /bin/bash
#$ -cwd
##############################################################################
# Declare Job, non-rerunable
##############################################################################
#$ -j y
#$ -r y
#
sleep 2
/bin/date
cd ~/_ForYuan_ew/CONFDIR
echo Starting executation at `date`
echo "This is a serial job"

./conf_rand_2walls_jerzy_p=0.01.out < tmp.dat125 > p0.01_N125

rm *.o
echo Finished at `date`
#############################################################################
