8 lines
163 B
Bash
8 lines
163 B
Bash
#!/bin/bash
|
|
#
|
|
# Shell wrapper around hash_candidates.py.
|
|
|
|
readonly THIS_DIR=$(dirname $0)
|
|
|
|
PYTHONPATH=$THIS_DIR/../client/python $THIS_DIR/hash_candidates.py "$@"
|