输出exiv2的特定行?

时间:2018-06-26 17:19:02

标签: bash macos terminal exiv2

使用exiv2,您可以在终端中输出图像信息。但是,它会输出几行信息:

exiv2 -ps ~/filelocation/filename.jpg

输出如下内容:

File name       : ~/filelocation/filename.jpg
File size       : 12345 Bytes
MIME type       : image/jpeg
Image size      : 800 x 600
~/filelocation/filename.jpg: No Exif data found in the file

如何命令终端仅从中输出图像尺寸数据?

我真正想要的是:

exiv2 -ps ~/filelocation/filename.jpg [some command here]

输出:

800 x 600

1 个答案:

答案 0 :(得分:1)

尝试一下-

exiv2 -ps ~/filelocation/filename.jpg |
  sed -n '/Image size/{ s/^.*: //; p; }'

sed的-n禁止显示默认输出。

/pattern/逐行匹配。

{...}包装动作脚本,以在匹配的行上执行。

s/^.*: //;去除前导字符串。

p;打印该值。