有没有办法做到这一点?
我有一组数据,其中包括一个整数字段:
cat myinput
14 bytes long.
36 bytes long.
32 bytes long.
我想在这些文本行中添加整数值以得出总和。所以在上面的例子中,整数值的总和是 82。我曾想过使用类似的东西:
cat myinput | cut -f1 -d' ' | <...add code here to add the filtered integers...>
看来我必须以某种方式表达,但我不知道如何。
任何人都可以帮忙吗?