İşte bu konuda benim almak. Burada bahsedilen önceki senaryolardan birçok iyi fikir geldi.
Bu OS X için bir bash betiğidir . Aynı temel dosya adı ve dng+jpg
uzantılarına sahip dosyaları arar . A jpg
ile tam olarak aynı ada sahip bulunursa dng
, o dosya adı görüntülenir ( -e
), dosya taşınır ( -m
) veya silinir ( -d
).
Alt klasörlerden geçecek, böylece kataloğunuzun tamamı veya sadece bir kısmı için kullanabilirsiniz.
Diğer ham dosya uzantıları *.dng
için komut dosyasında tercih ettiğiniz uzantıyı kullanın.
Uyarı: Aynı ada ancak farklı uzantıya sahip iki farklı resminiz olabilir. Bunlar bu senaryonun kaçınılmaz kayıpları.
Komut dosyasını nasıl kullanacağınız aşağıda açıklanmıştır:
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
Temel kullanım şu şekilde çalışır:
$ ./dng-jpg.sh -e /Volumes/photo/DNG/2015
Bu, jpg
her ikisine sahip olma ölçütlerine uyan dosyaların tüm dosya adlarını dng
vejpg
aynı ada dosya .
Sonuç böyle bir şeye benzeyecektir:
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.
Şimdi ben sadece geçiş olacağını dosyaları silmek istiyorsanız -e
için -d
:
$ ./dng-jpg.sh -d /Volumes/photo/DNG/2015
Ya da dosyaları / duplicates'e taşımak istersem yürütürüm -m
.
$ ./dng-jpg.sh -m /Volumes/photo/DNG/2015
Şimdi yinelenen jpg
dosyalar/Volumes/photo/DNG/2015/duplicates
İşte senaryo: 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."