标签: python bash pycharm
我在Ubuntu 14.04下有一段通过终端运行的代码:
sh demo.sh
在demo.sh内,主python文件的调用如下:
demo.sh
#!/bin/bash python main_test.py file.csv --header 0
因为我更喜欢使用 Pycharm 而不是终端来避免在某些点上繁琐的python版本之间切换,我想编写一个调用我的主文件main_test.py的跑步者如果需要,请输入file.csv和其他人。
main_test.py
file.csv
如何做到这一点?