Skip to content

Instantly share code, notes, and snippets.

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 TyrfingMjolnir/17e5f7de32ba6b36964622a2d0e1392b to your computer and use it in GitHub Desktop.
Save TyrfingMjolnir/17e5f7de32ba6b36964622a2d0e1392b to your computer and use it in GitHub Desktop.
FileMaker Export Field contents post processing
#
# Pretty annoying workaround for something that should have been covered by default behavior. Who needs UTF-16 with \r-type linebreaks?
#
iconv -f UTF-16 -t UTF-8 /tmp/exportedFieldContent.utf-16.txt | tr "\r" "\n" > /tmp/exportedFieldContent.utf-8.txt
#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment