我有以下输入文件
system info com1 command set
system info com2 command set
system command set1 information description test
system command 21-22 information description pass
system command T1-T2-T3 information description file
system command commonset information description info
和以下命令
awk '/system command/&&/information description/ { gsub("\"","") ; print ++ OFS") Command = " $3}' inputfile.txt
给我以下输出
1) Command = set1
2) Command = 21-22
3) Command = T1-T2-T3
4) Command = commonset
有没有办法让我的命令列表计数不是简单的数字,而是排序序数并有这样的输出
1st) Command = set1
2nd) Command = 21-22
3rd) Command = T1-T2-T3
4th) Command = commonset