sh 终端 - 查找未使用的图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 终端 - 查找未使用的图像相关的知识,希望对你有一定的参考价值。

#!/bin/bash
DIR=.
if [ -n "$1" ]
then
  DIR=$1
fi

# Find image files in.
FILES=`find $DIR -type f | grep ".*\.\(jpg\|gif\|png\|jpeg\)"`

# Default searcher is grep. If Silver Searcher is installed, use that.
SEARCHER='grep -r -l '
if command -v ag
then
  # Sweet! Let's use Silver Searcher.
  SEARCHER='ag -l '
fi

# Loop over image files.
for f in $FILES
do
  if [[ -f $f ]]
  then
    name=$(basename $f)
    found=$($SEARCHER $name $DIR)
    if [[ -z $found ]]
    then
      echo $f
    fi
  fi
done

以上是关于sh 终端 - 查找未使用的图像的主要内容,如果未能解决你的问题,请参考以下文章

sh 在Project中查找未使用的图像

sh 终端命令在Artiste上查找/替换hw图像

sh 在项目的文件夹中查找未使用的图像

sh 将使用DiskUtility.app创建的* .cdr图像转换为带有osX终端的* .iso文件

sh 终端:while循环查找返回的文件,获取完整路径和文件名

sh 用于查找docker图像后代的Shell脚本