From 151b606189542704f787cfd550651fbb5bbb628e Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sun, 6 Dec 2015 10:40:21 +0100 Subject: Add scripts Signed-off-by: Florian Pritz --- flatten-latex | 31 +++++++++++++++++++++++++++++++ httpscert | 3 +++ httpstest | 5 +++++ sort-images | 11 +++++++++++ 4 files changed, 50 insertions(+) create mode 100755 flatten-latex create mode 100755 httpscert create mode 100755 httpstest create mode 100755 sort-images diff --git a/flatten-latex b/flatten-latex new file mode 100755 index 0000000..59d8d9b --- /dev/null +++ b/flatten-latex @@ -0,0 +1,31 @@ +#!/usr/bin/env python +"""Convert a master latex file, +into a single document by including +automatically all the LaTeX documents +which are arguments of +\include or \input +ignoring any \includeonly +""" +import sys +if len(sys.argv)==3: + masterfile=sys.argv[1] + flattenfile=sys.argv[2] +else: + sys.exit('USAGE: %s masterfile.tex flattenfile.tex' %sys.argv[0]) + +filetex=open(masterfile,'r') +texlist=filetex.readlines() +finaltex=open(flattenfile,'w') +for i in texlist: + if i.find(r'\input{')==0 or i.find(r'\include{')==0: + includetex=open(i.split('{')[-1].split('}')[0]+'.tex','r') + finaltex.write(includetex.read()) + finaltex.write('\n') + elif i.find(r'\includeonly{')==0: + finaltex.write(i.replace(r'\includeonly{',r'%\includeonly{')) + else: + finaltex.write(i) + + +filetex.close() +finaltex.close() \ No newline at end of file diff --git a/httpscert b/httpscert new file mode 100755 index 0000000..c2834c0 --- /dev/null +++ b/httpscert @@ -0,0 +1,3 @@ +#!/bin/bash + +httpstest $1 | sed -n '/-----BEGIN/,/-----END/p' | openssl x509 -text diff --git a/httpstest b/httpstest new file mode 100755 index 0000000..e4fb0da --- /dev/null +++ b/httpstest @@ -0,0 +1,5 @@ +#!/bin/bash + +# usage: httpstest + +openssl s_client -servername $1 -connect $1:443 {FileModifyDate})); $_ = "$date/$_";' "$@" + +# the same in slow +#for i in "$@"; do + #[[ -d "$i" ]] && continue + #dir=$(exiftool "$i" | grep "File Modification Date/Time" | sed -rn "s/.*: ([0-9]{4}):([0-9]{2}):([0-9]{2}) .*/\1-\2-\3/p") + #mkdir -p "$dir" + #mv -nv "$i" "$dir/$(basename "$i")" +#done -- cgit v1.2.3-24-g4f1b