Units:
- string-list: list of strings
- string: one string
- int: one int over 32bits
- bool
Strings are not all equal in size but we will make the assumption they are, same for lists
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # Usage: ./zsh_history.py <path_to_history_file> | |
| import sys | |
| import os | |
| import pprint | |
| from collections import defaultdict | |
| from operator import itemgetter |