使用file批量检测图片的分辨率


#!/bin/bash
#@auther steven
for i in `ls ./imags/*`;do
line=`file $i`
#避免结果分两行打印分割开了文件名和分辨率,因此使用echo将其打印在一行
#echo $(grep -oE '[0-9a-zA-Z]{6,}\.[0-9a-zA-Z]{3,4}|[0-9]{3,5}.{1,3}x.{1,3}[0-9]{3,5}' <<< "$line")>>check_result.txt;
echo $(grep -oE '[0-9a-zA-Z]{6,}\.[0-9a-zA-Z]{3,4}|[0-9]{3,5}.{0,3}x.{0,3}[0-9]{3,5}' <<< "$line")>>check_result.txt;
done
 

说明:部分文件使用file获取到的分辨率有的 类似1x1,有的类似1 x 1,有的类似 1  x  1,因此使用正则匹配

你可能感兴趣的:(Linux,运维)