bug-gawk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [bug-gawk] Gawk feature request - file list


From: Manuel Collado
Subject: Re: [bug-gawk] Gawk feature request - file list
Date: Fri, 03 Feb 2017 10:41:03 +0100
User-agent: Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/17.0 Thunderbird/17.0

Can you use wildcards? Most windows ports of gawk do not expand wildcards in the shell, but inside the gawk executable. Quick test (warning, long line wrapped):

H:\WINDOWS\system32>gawk "{print ARGIND, FILENAME; len+=length(FILENAME)+1; nextfile} END{print len}" * * *
1 $winnt$.inf
...
7269 zipfldr.dll
84951

So the equivalent command line length, with wilcards expanded, would be 84951 characters.

HTH.

El 03/02/2017 9:06, Daniele Zanoli escribió:
[..]
Unfortunately I'm often using a Windows port of Gawk (I have to run it
on several PCs of my colleagues) and the windows shell command line is
only 32k characters (or bytes?) long...

I have built a kind of "IDE" which launches awk scripts over files in
order to make it simple to use also for non tech people but currently I
am limited on the max number of files I can handle.

Original Message  --------
Subject: Re: [bug-gawk] Gawk feature request - file list
From: address@hidden
To: address@hidden, address@hidden
Date: 1/2/2017, 15:57:18
[...]

Often I have to use gawk on a large number of files with a single
 execution of gawk (I have to compare some file contents) but it
is very easy to reach the maximum length of the shell command
line, since files are in different paths

So I think it would be useful (not only for me) a new command
line switch to specify a file that contains the names of the
files to process (e.g. gawk .. -list myfilelist.txt ...)

--
Manuel Collado - http://lml.ls.fi.upm.es/~mcollado




reply via email to

[Prev in Thread] Current Thread [Next in Thread]