#!/bin/bash #shell类型
echo 123
#先按ESC键,再执行:wq,保存成文件test.sh
:wq
sh test.sh #执行脚本
1. 首先,安装python,perl,然后把例如c:\Python27之类的路径加到你的environment variable的path里。
2. 设置正确的参数,working directory是你script的路径。wait until completion?如果是True,则如果你的script会运行1个小时的话,这个VI就会被block住,如果是False,那么script被调用后,VI会立刻返回。
command line就是实际运行的命令了,比如是python ***.py
3. 举个例子
比如你在VI的同级目录下写了个test.py
import time
def add(p1, p2):
print p1+p2
return p1+p2
if __name__=='__main__':
time.sleep(5)
add(1,2)
那么在VI里面就这样来画,当wait until completion?=True时,VI会被block住
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)