This is my shell script, and I want to run the method foo(param)
:
#!/bin/sh
python /Users/username/Desktop/forTrump/test.py
How would I run a function inside test.py
using the shell script above?
This is my shell script, and I want to run the method foo(param)
:
#!/bin/sh
python /Users/username/Desktop/forTrump/test.py
How would I run a function inside test.py
using the shell script above?
python -c 'import test; print test.foo(param)'