Removing EXIF Data From Photos in Linux
If privacy matters for you, you probably want to remove all EXIF metadata and anonymize your photos before you upload them.
yay exiftool
or
sudo apt-get install libimage-exiftool-perl
To display all EXIF information run
exiftool image.jpg
To remove all EXIF information from the image you run
exiftool -all= image.jpg
or
exiftool -all= *.jpg