Skip to content

Instantly share code, notes, and snippets.

@cmittendorf
Created May 13, 2017 10:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmittendorf/b92bc84a9fd73013423aebe34502dcf1 to your computer and use it in GitHub Desktop.
Save cmittendorf/b92bc84a9fd73013423aebe34502dcf1 to your computer and use it in GitHub Desktop.
Copies the location information on macOS from one file to another.
#!/usr/bin/env bash
if [ $# != 2 ]; then
echo `basename $0`" <src file> <dst file>"
exit
fi
xattr -w "com.apple.metadata:kMDItemLatitude" $(mdls -name kMDItemLatitude "$1" | awk '{print $3}' | sed s/\"//g) "$2"
xattr -w "com.apple.metadata:kMDItemLongitude" $(mdls -name kMDItemLongitude "$1" | awk '{print $3}' | sed s/\"//g) "$2"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment