From my linux experience...
#!/bin/sh#Get the file list from the command linefilelist=$1; shift#Loop over the files from the listwhile read fdoecho $f#Put your commands here...done < $filelist
No comments:
Post a Comment