これを行う方法awk
は次のとおりです(回答のコードによって行われる出力全体)。
最終的に同じ入力を何度も再処理する場合は、通常、別のアプローチの方が優れている可能性があることを示しています。
awk
このようなテキスト入力の処理に最適です。awk
プログラムはで行われるものよりもはるかに長くなりますが、sed
読みやすく、印刷ステートメントを追加してデバッグをはるかに簡単にすることができます。
デバッグステートメントを残しました(コメントアウト)。それらのコメントを解除して、スクリプトの動作を確認できます。
awk
プログラムをどこかに置く必要があり、このような単一のユースケースで最も簡単な場所は、awk
コマンドラインで単一引用符付きの文字列にすべてを配置することです。
この方法では、別のファイルや一時ファイルに保存する必要がないため、ファイル管理が不要で、スクリプトはそれ自体で機能します。
このプログラムは長く見えますが、ほとんどすべてのコメント、デバッグ文、および空白です。
#!/bin/bash
## Whole awk program is one single quoted string
## on the awk command line
## so we don't need to put it in a separate file
## and so bash doesn't expand any of it
## Debugging statements were left in, but commented out
/usr/bin/cpuid | awk '
BEGIN { ## initialize variables - probably unnecessary
em = ""
ef = ""
fa = ""
mo = ""
si = ""
ps = ""
}
## get each value only once
## extended model is in field 4 starting at the third character
## of a line which contains "extended model"
/extended model/ && em == "" {
em = substr($4, 3)
##print "EM " em
}
## extended family is in field 4 starting at the third character
## of a line which contains "extended family"
/extended family/ && ef == "" {
ef = substr($4, 3)
##print "EF " ef
}
## family is in the last field, starting at the second character
## and is two characters shorter than the field "()"
## of a line which starts with "family"
## (so it does not match "extended family")
$1 == "family" && fa == "" {
##print NF " [" $NF "]"
##print "[" substr($NF, 2) "]"
l = length($NF) - 2
fa = substr($NF, 2, l)
##print "FA " fa
}
## model is in the third field, starting at the third character
## of a line which starts with "model"
## (so it does not match "extended model")
$1 == "model" && mo == "" {
mo = substr($3, 3)
##print "MO " mo
}
## stepping id is in field 4 starting at the third character
## of a line which contains "stepping id"
/stepping id/ && si == "" {
si = substr($4, 3)
##print "SI " si
}
## processor serial number is in field 4 starting at the third character
## of a line which contains "processor serial number:"
/processor serial number:/ && ps == "" {
ps = $4
##print "PS " ps
}
## Quit when we have all the values we need
em != "" && ef != "" && fa != "" && mo != "" && si != "" && ps != "" {
exit
}
END {
print em ef fa mo si " " ps
}
'