summaryrefslogblamecommitdiff
path: root/imagescheck/icccheckfile.sh
blob: e0a80dda0abef84704677e2801a9852d4c7b3708 (plain) (tree)
1
2
3
4
5
6
7
8
9

           
                                                 





                                            
#!/bin/bash

identify -verbose $1 | grep -i profile >/dev/null

if [ "$?" == 0 ]; then
    export name="$1"
    export name=${name##../../client-data/}
    echo "ICC profile found for image $name"
fi