#!/bin/bash
a=1
b=2
if [ $a -le $b ]; then
   echo yes;
else
   echo no;
fi

if [ -f regfile ]; then
   echo 'file exists'
fi

if test -f regfile; then
   echo 'file exists'
fi


