#!/bin/bash
#########################
# Job name to be reported by qstat
##############################################################################
#$ -N WN125p001
#$ -S /bin/bash
#$ -cwd
##############################################################################
# Declare Job, non-rerunable
##############################################################################
#$ -j y
#$ -r y
#
sleep 2
/bin/date
cd ~/_ForYuan_ew/
echo Starting executation at `date`
echo "This is a serial job"
time ./yuan_1wall.out < input_yuan.dat > 1WN125p001
echo Finished at `date`
#############################################################################
