Hi all, I have a unix script which needs to be implemented in DOS script here is the unix script.. #---------script starts nofiles=`ls | grep ^a` #This line gets the all file and dir which start wih 'a' for i in $nofiles do if [ -d $i ] # This line checks for dir then rm $i fi done #---------script ...