This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Export images and video from Google Photos and adjust metadata | |
-- download images from | |
takeout.google.com/settings/takeout | |
-- unzip | |
- flatten to new dir takeout2 | |
exiftool -q -q -r -d takeout2 "-directory<filemodifydate" "-directory<createdate" "-directory<datetimeoriginal" Takeout |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "Hello, developer" | |
echo "-----Prepararations-----" | |
echo "Installing Ubuntu-make" | |
sudo apt install ubuntu-make | |
echo "Installing build-essential" | |
sudo apt install build-essential |