Parsing comma delimited text file
I need to delete a set of files in certain directories if there're older than a certain number of days. So I have a text file, with each line containing the directory & number of days.
The format is like this:
dirA,5
dirB,7
How do I write script to iteratively parse this text file & delete the files in the directories base on the number of days?
Any help to get started is appreciated!
|