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
import datetime as dt | |
from collections import OrderedDict | |
from glob import glob | |
from sys import argv | |
from PIL import Image | |
from PIL.ExifTags import TAGS, GPSTAGS | |
def get_exif_data(image): |
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 | |
BIN=/usr/bin | |
MAN=/usr/share/man/man1 | |
function register_clang_version { | |
BINV=$1 | |
PRIORITY=`echo $BINV | awk '{print int($1 * 10)}'` | |
update-alternatives --install $BIN/clang clang $BIN/clang-$BINV $PRIORITY \ | |
--slave $BIN/clang++ clang++ $BIN/clang++-$BINV |