File indexing completed on 2024-05-19 04:19:14

0001 #!/bin/bash
0002 
0003 # ===========================================================
0004 #
0005 # This file is a part of digiKam project
0006 # https://www.digikam.org
0007 #
0008 # Date:        2016-08-15
0009 # Description: Script to find Exiv2 tags strings.
0010 #
0011 # Copyright (C) 2016-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
0012 #
0013 # SPDX-License-Identifier: BSD-3-Clause
0014 #
0015 # ============================================================
0016 
0017 find ../../ -name "*.cpp" -type f | xargs grep -n "\"Exif\." | awk -F'[\"\"]' '{print $2}' |sort -u |cut -d' ' -f 1 | grep "Exif."
0018 find ../../ -name "*.cpp" -type f | xargs grep -n "\"Iptc\." | awk -F'[\"\"]' '{print $2}' |sort -u |cut -d'=' -f 1 | grep "Iptc."
0019 find ../../ -name "*.cpp" -type f | xargs grep -n "\"Xmp\." | awk -F'[\"\"]' '{print $2}' |sort -u |cut -d'=' -f 1 | grep "Xmp."