#!/usr/bin/env python
import os
import sys

# Remove???
cur_dir = os.path.realpath(os.getcwd())
if not cur_dir in sys.path:
    sys.path.insert(0, cur_dir)

from grab import cli

if __name__ == '__main__':
    cli.process_command_line()
