この問題に関する私の見解を以下に示します。ここで述べた以前のスクリプトから多くの良いアイデアが生まれました。
これはOS X用のbashスクリプトです。同じベースファイル名とdng+jpg
拡張子を持つファイルを探します。jpg
がとまったく同じ名前で見つかった場合、dng
そのファイル名が表示され(-e
)、ファイルが移動(-m
)または削除(-d
)されます。
サブフォルダーを経由するため、カタログ全体または一部のみに使用できます。
他の生のファイル拡張子について*.dng
は、スクリプト内でお好みの拡張子に置き換えるだけです。
警告:同じ名前で異なる拡張子を持つ2つの異なる画像を作成できます。これらは、このスクリプトの必然的な犠牲者です。
スクリプトの使用方法は次のとおりです。
Usage: dng-jpg.sh [-m <path>] [-d <path>] [-e <path>] [-h]
-m: for move (moves files to <path>/duplicates)
-d: for delete (deletes duplicate files)
-e: for echo (lists duplicate files)
-h: for help
基本的な使い方は次のようになります。
$ ./dng-jpg.sh -e /Volumes/photo/DNG/2015
これは、同じ名前のファイルとファイルのjpg
両方を持つという基準に一致するファイルのすべてのファイル名をエコーします。dng
jpg
結果は次のようになります。
Echo selected with path: /Volumes/photo/DNG/2015
/Volumes/photo/DNG/2015/03/18/2015-03-18_02-11-17.jpg
/Volumes/photo/DNG/2015/06/01/2015-06-01_05-10-50.jpg
/Volumes/photo/DNG/2015/06/01/2015-06-01_05-10-56.jpg
/Volumes/photo/DNG/2015/06/01/2015-06-01_05-11-39.jpg
/Volumes/photo/DNG/2015/06/01/2015-06-01_05-11-54.jpg
/Volumes/photo/DNG/2015/06/01/2015-06-01_05-12-26.jpg
/Volumes/photo/DNG/2015/06/01/2015-06-01_05-12-43.jpg
/Volumes/photo/DNG/2015/06/01/2015-06-01_05-13-21.jpg
/Volumes/photo/DNG/2015/06/01/2015-06-01_05-13-56.jpg
9 files found.
私はファイルを削除したい場合は今、私はちょうど切り替えるでしょう-e
に-d
。
$ ./dng-jpg.sh -d /Volumes/photo/DNG/2015
または、ファイルを/ duplicatesに移動する場合は、で実行し-m
ます。
$ ./dng-jpg.sh -m /Volumes/photo/DNG/2015
今、重複jpg
ファイルは/Volumes/photo/DNG/2015/duplicates
スクリプトは次のとおりです。dng-jpg.sh
#!/bin/bash
# Init variables
isSetM=0
isSetD=0
isSetE=0
isSetCount=0
counter=0
#Display usage info
usage() {
cat <<EOF
Usage: dng-jpg.sh [-m <path>] [-d <path>] [-e <path>] [-h]
-m: for move (moves files to <path>/duplicates)
-d: for delete (deletes duplicate files)
-e: for echo (lists duplicate files)
-h: for help
EOF
exit 1
}
#Check for parameters
while getopts ":m:d:e:h" opt; do
case ${opt} in
m)
isSetM=1
let isSetCount="$isSetCount+1"
arg=${OPTARG}
echo "Move selected with path:" $arg
;;
d)
isSetD=1
let isSetCount="$isSetCount+1"
arg=${OPTARG}
echo "Delete selected with path:" $arg
;;
e)
isSetE=1
let isSetCount="$isSetCount+1"
arg=${OPTARG}
echo "Echo selected with path:" $arg
;;
h)
let isSetCount="$isSetCount+1"
usage
;;
\?)
echo "Invalid option: -$OPTARG" >&2
usage
;;
:)
echo "Option -$OPTARG requires a directory argument." >&2
usage
;;
*)
usage
;;
esac
done
# If no parameters, show usage help and exit
if test -z "$1"; then
usage
fi
# If multiple parameters (not counting -a), show usage help and exit
if (($isSetCount > 1)); then
usage
fi
#Verify directory
if [ ! -d "$arg" ]; then
echo "$arg is not a path to a directory." >&2
usage
fi
#Now set it as a basedir
BASEDIR=$arg
WASTEDIR="$BASEDIR/duplicates/"
if (( $isSetM==1 )); then
mkdir $WASTEDIR
fi
for filename in $(find $BASEDIR -name '*.dng' -exec echo {} \; | sort); do
prefix=${filename%.dng}
if [ -e "$prefix.jpg" ]; then
let counter="$counter+1"
if (( $isSetE==1 )); then
echo "$prefix.jpg"
fi
if (( $isSetM==1 )); then
mv $prefix.jpg $WASTEDIR
fi
if (( $isSetD==1 )); then
rm $prefix.jpg
fi
fi
done
echo "$counter files found."