Apreciate any help and excuse me if my terminology is incorrect.
sed -i '1,6d;$ d' *.csv
This unix command, run on cygwin, will go through all the files in the directory that end with .csv.
For each file it deletes the 1st 6 rows and the last row and that's the returned file.
My question is how do I go about scheduling this so that it is run on a certain directory periodically?
Note: I have a fair idea around basic unix commands. Also, I currently do some scheduling, using task scheduler in windows XP, using vbs to work on some excel files.