6 lines
104 B
Bash
6 lines
104 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
here=$(cd $(dirname $0); pwd)
|
||
|
cd $here
|
||
|
exec poetry run python foobaz.py -a 127.0.0.1 -r shop
|