Custom command to rename duplicate files with reference files names #1004
Unanswered
AlexMichaan
asked this question in
Q&A
Replies: 2 comments 3 replies
-
You could create a script like this: #!/bin/zsh
mv "$1" "$1_dupeguru_temp_rename"
mv "$2" "$1"
mv "$1_dupeguru_temp_rename" "$2" and have this as the custom command: This is a legitimate feature request, and I have had this on my TODO list for a while, maybe I'll get around to implement it in the future. |
Beta Was this translation helpful? Give feedback.
3 replies
-
Did you resolve this? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi!
I am looking for a way to write a custom command that would rename the duplicate selected file with the name of the original reference file above. Unfortunately I am not at all familiar with the custom command tool in Dupeguru and I didn't manage to write a proper one to fill that purpose.
The goal is to gain time by being able to do this renaming action in a single click, instead of having to copy-paste manually the reference file's name onto the duplicate one. It would help me immensely since I am currently using Dupeguru to work on a very large amount of duplicate pictures that need renaming.
If ever you have a tip for a custom command that would work, I would be very thankful.
I work on mac OS 10.12 with Dupeguru 4.0.3.
Many thanks,
Alex
Beta Was this translation helpful? Give feedback.
All reactions