How good it's if we can have Bash internal variable as default for loop counter,

f(){
 unset i
 for a;{
  let ++i
  # ...
 }
 #...

}

so have that instead of $i for sake of efficieny or optimization,
could be named any, $/, $! etc

Reply via email to