mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
13 lines
168 B
Bash
Executable File
13 lines
168 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $# -eq 0 ]
|
|
then
|
|
venv/bin/python -u opaque.py
|
|
elif [ $1 == "flask" ]
|
|
then
|
|
echo "$@"
|
|
venv/bin/python -m $@
|
|
else
|
|
echo "Unknown command"
|
|
fi
|