12 lines
282 B
Bash
Executable file
12 lines
282 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Où trouver le paquet python
|
|
PKG_DIR=~/cranspasswords
|
|
|
|
# Où trouver la conf client
|
|
CONF=~/.config/cpasswords
|
|
|
|
# Binaire python
|
|
PYTHON=/usr/bin/python
|
|
|
|
/usr/bin/env PYTHONPATH=$PKG_DIR CRANSPASSWORDS_CLIENT_CONFIG_DIR=$CONF $PYTHON $PKG_DIR/cpasswords/client.py "$@"
|