1.安装
sudo pip install shellpy
如果提示你当前pip版本过低,可以参照提示执行
sudo pip install --upgrade pip
2.建立文件
vim yourFileName.spy 注意是spy后缀
3.执行
shellpy yourFileName.spy
可以很直观地在python中调用shell命令
例如result = `ls -l` 或者result = `ls -l注意是Tab键上的`另外shellpy还有包的概念,包的概念和python包的概念是完全一样的,如common.spy __init__.spy唯一的区别就是.py都变成了.spy.这样的包还能够被python直接引用,如from common.common import common_func具体请见 https://github.com/lamerman/shellpy另外也在此感谢公众号Python程序员的帮助
时间: 2024-10-13 10:29:27