将 lsof 或 lshw 的输出解析为 awk

将 lsof 或 lshw 的输出解析为 awk

我注意到 lshw 和 lsof 都需要几分钟才能加载其输出,如果我将它们的输出通过管道传输给 awk 进行处理,我会从 awk 获得帮助消息,然后...第一个命令中没有任何内容。

需要做什么才能让 awk 真正提取我需要的输出?有没有办法让管道保持到有输出可供 awk 处理?

下面是我尝试的

$ lsof | awk `{print $3}`                                              
mksh: {print: not found
Usage: awk [POSIX or GNU style options] -f progfile [--] file ...
Usage: awk [POSIX or GNU style options] [--] 'program' file ...
POSIX options:      GNU long options: (standard)
    -f progfile     --file=progfile
    -F fs           --field-separator=fs
    -v var=val      --assign=var=val
Short options:      GNU long options: (extensions)
    -b          --characters-as-bytes
    -c          --traditional
    -C          --copyright
    -d[file]        --dump-variables[=file]
    -e 'program-text'   --source='program-text'
    -E file         --exec=file
    -g          --gen-pot
    -h          --help
    -L [fatal]      --lint[=fatal]
    -n          --non-decimal-data
    -N          --use-lc-numeric
    -O          --optimize
    -p[file]        --profile[=file]
    -P          --posix
    -r          --re-interval
    -S          --sandbox
    -t          --lint-old
    -V          --version

To report bugs, see node `Bugs' in `gawk.info', which is
section `Reporting Problems and Bugs' in the printed version.

gawk is a pattern scanning and processing language.
By default it reads standard input and writes standard output.

Examples:
    gawk '{ sum += $1 }; END { print sum }' file
    gawk -F: '{ print $1 }' /etc/passwd

请注意,$3 字段只是示例,它与任何字段具有相同的效果。我也一直在尝试sudo lsof | awk/test.txt/ {print $3}`

我也尝试过sudo lshw | awk/cpu/{print}`

笔记:我知道我可以使用 grep,但我试图理解为什么 lshw 和 lsof 所需的短暂停顿不会让 awk 完成其工作,以及如何解决这两个命令所需的暂停问题

答案1

问题在于使用正确的引号。

在你的命令下

lsof | awk `{print $3}` 

您在命令替换语法(反引号)中给出了awk操作模式,因此您的 shellmksh将其视为命令并在替换时出现此错误:

mksh: {print: not found

因为您已经得到了这个,所以您需要适当的引用:

lsof | awk '{print $3}'

相关内容