Tagged Questions
The file-globs tag has no wiki summary.
3
votes
2answers
387 views
How can I handle wildcards on the command line using Perl on Windows?
I though this would be simple, but apparently I can't do:
script.pl *.ext
in the WinXP command processor.
Is there a built-in solution? (i.e. not a CPAN module?)
0
votes
2answers
189 views
how do i find all files with the same name in all subdirectories
I want to find all the different .gitignore files I have to combine them into one.
I tried something like find */**/.gitignore but that came up with nothing.
All the files are in sub directories ...
0
votes
7answers
495 views
Applying AWK on Set of Files with Same Extension
I want to apply the following "awk" command on files with extension "*.txt"
awk '$4 ~ /NM/{ sum += $2 } END{ print sum }'
But why this command doesn't work:
for i in *.txt do echo awk '$4 ~ /NM/{ ...