This file contains 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
#!/usr/bin/env python3 | |
__author__ = 'Konrad Strack' | |
__copyright__ = 'Copyright 2014, Konrad Strack' | |
__license__ = 'MIT' | |
from math import log10 | |
import sys | |
import subprocess |
This file contains 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 | |
if [ $# -lt 2 ]; then | |
echo "usage: $1 questions_file output_dir" | |
exit -1 | |
fi | |
questions_file=$1 | |
output_dir=$2 |