여기에 방법이 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
}
'