นี่คือปัญหาของฉันในเรื่องนี้ ความคิดที่ดีมากมายมาจากสคริปต์ก่อนหน้าที่กล่าวถึงที่นี่
นี้เป็นสคริปต์ทุบตีสำหรับ OS X ค้นหาไฟล์ที่มีอยู่ด้วยชื่อไฟล์พื้นฐานและdng+jpg
นามสกุล หากjpg
พบว่ามีชื่อเหมือนกันทุกประการdng
ชื่อไฟล์นั้นจะปรากฏขึ้น ( -e
) ไฟล์ถูกย้าย ( -m
) หรือถูกลบ ( -d
)
มันจะผ่านโฟลเดอร์ย่อยดังนั้นคุณสามารถใช้มันสำหรับแคตตาล็อกทั้งหมดของคุณหรือเพียงบางส่วนของมัน
สำหรับนามสกุลไฟล์ดิบอื่น ๆ เพียงแทนที่*.dng
สคริปต์ด้วยนามสกุลที่คุณต้องการ
คำเตือน:คุณอาจมีภาพสองภาพที่มีชื่อเหมือนกัน แต่มีนามสกุลต่างกัน นั่นคือการบาดเจ็บล้มตายของสคริปต์นี้อย่างหลีกเลี่ยงไม่ได้
นี่คือวิธีใช้สคริปต์:
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
หรือถ้าเราต้องการที่จะย้ายไฟล์ไปยัง / -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."