show-crc.awk
来自「Reference Implementation of G.711 standa」· AWK 代码 · 共 7 行
AWK
7 行
#!/bin/awk#----------------------------------------------------# AWK script to print the CRC info from the test# log printout produced by the EID makefiles.#----------------------------------------------------/gawk/{getline;while ($0 ~ /^[-0-9]/) {print;getline}; print ""}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?