8 lines
196 B
Bash
Executable File
8 lines
196 B
Bash
Executable File
#!/bin/bash
|
|
|
|
meta_producer=$(/usr/bin/exiftool -s -s -s -Producer "lol" 2>/dev/null | cut -d " " -f1)
|
|
echo "$meta_producer"
|
|
if [[ "$meta_producer" -eq "dompdf" ]]; then
|
|
echo "Removing $cfile"
|
|
fi
|