From my linux experience...
#!/bin/shfor f in `ls`doecho “Processing $f file …”#Here you can put your commandsdoneYou can loop over files with specific names changing ls to ie. ls *.txt etc.
#!/bin/shfor f in `ls`doecho “Processing $f file …”#Here you can put your commandsdone
No comments:
Post a Comment