Reputation: 41
This is my shell script, and I want to run the method foo(param):
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?
test.py
Upvotes: 0
Views: 3125
Reputation: 298
python -c 'import test; print test.foo(param)'
Upvotes: 1