awkの使用に問題があります。引数として指定された各ファイルに最低10長の行数を出力します。また、その行の内容(最初の10文字を除く)も印刷されます。ファイルの分析が終わったら、ファイル名と印刷された行数を印刷します。
これまで私がしたことは次のとおりです。
{
if(length($0)>10)
{
print "The number of line is:" FNR
print "The content of the line is:" substr($0,10)
s=s+1
}
x= wc -l //number of lines of file
if(FNR > x)
{
print "This was the analysis of the file:" FILENAME
print "The number of lines with characters >10 are:" s
}
}
これにより、ファイル名と各行の後に少なくとも10文字の行数が印刷されますが、次のようになります。
print "The number of line is:" 1
print "The content of the line is:" dkhflaksfdas
print "The number of line is:" 3
print "The content of the line is:" asdfdassaf
print "This was the analysis of the file:" awk.txt
print "The number of lines with characters >10 are:" 2
ベストアンサー1
次のようにしてみてください。
#!/usr/bin/gawk -f
{
## Every time we change file, print the data for
## the last file read (ARGV[ARGIND-1])
if(FNR==1 && ARGIND>1){
print "This was the analysis of file:" ARGV[ARGIND-1]
print "The number of lines with >10 characters is:" s,"\n"
s=0;
}
if(length($0)>10){
print "The line number is:" FNR
print "The content of the line is:" substr($0,10)
s=s+1
}
}
## print the data collected on the last file in the list
END{
print "This was the analysis of file:" ARGV[ARGIND]
print "The number of lines with >10 characters is:" s,"\n"
}
ファイルに対してこのコマンドを実行すると、次のようa
にb
なります。c
$ ./foo.awk a b c
The line number is:2
The content of the line is:kldjahlskdjbasd
This was the analysis of the file:a
The number of lines with characters >10 is:1
The line number is:2
The content of the line is:ldjbfskldfbskldjfbsdf
The line number is:3
The content of the line is:kfjbskldjfbskldjfbsdf
The line number is:4
The content of the line is:ldfbskldfbskldfbskldbfs
The line number is:5
The content of the line is:lsjdbfklsdjbfklsjdbfskljdbf
This was the analysis of the file:b
The number of lines with characters >10 is:4
The line number is:1
The content of the line is: asdklfhakldhflaksdhfa
This was the analysis of the file:c
The number of lines with characters >10 is:1