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