in reply to Re: Have a multiple file in directory and want to manipulate in each files in incremental order. All the file have same value.
in thread Have a multiple file in directory and want to manipulate in each files in incremental order. All the file have same value.

Or use the glob operator, rather than opendir and readir, which will remove the . and .. directories from the list and preserve the relative path of the entries. But one still has to check if the entries are really files with the -f operator.
  • Comment on Re^2: Have a multiple file in directory and want to manipulate in each files in incremental order. All the file have same value.
  • Download Code