7 lines
93 B
Bash
7 lines
93 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -e
|
||
|
source $HOME/venv/bin/activate
|
||
|
python3 maths.py $1 $2
|
||
|
deactivate
|
||
|
|