Here's the bash script I am working on:
i/p: ls *.py
o/p: List of output files with .py
extension
1.How do I know the number "n" of the .py
files?
2.Then pump files one by one into the program to do further processing?
Here's the bash script I am working on: i/p: 1.How do I know the number "n" of the |
||||
|
I'd use an array:
bash arrays tutorial here |
|||||
|