For-loop in bash
Created by Codedamn about a year ago
0
No description provided
5 Comments
0
Well done
0
Thanks.
0
for f in $(readfiles) do echo "Reading file $f" cat $f done
Reading individual files in a directory
for i in {1..100..10} similar to for(i=1; i<=100; i+=10)
show more answers
Your comment