Search found 2 matches

by vijays3
13 Oct 2009 01:11
Forum: DOS Batch Forum
Topic: need to delete multipale dir
Replies: 1
Views: 4075

need to delete multipale dir

Hi all

i have urgent requirement please help me ..

i need batch script which can delete multiple Ej* directories with having files also in one go..

Please help me to get it done

Thanks and regards
Vijay sahu :(
by vijays3
04 Oct 2009 07:02
Forum: DOS Batch Forum
Topic: unix script needs to be implemented in DOs Batch script
Replies: 1
Views: 3718

unix script needs to be implemented in DOs Batch script

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 ...