2007年04月14日 星期六 18:39
我的开发工作经常是在本地编辑文件,,上传到unix系统编译 并部署到bin目录 为了方便,我在编辑器中加了个外部工具,,自己写的python脚本 我编辑完文件 后;;调用脚本,,脚本则ftp上传,,然后telnet上去,, 现在的问题是,,telnet过程中,,make编译没有问题,,可是cp拷贝操作 总是等很长时间,,最后只好kill这个任务 部分代码如下 tn = telnetlib.Telnet(HOST) tn.read_until("login: ") tn.write(user + "\n") tn.read_until("Password: ") tn.write(password + "\n") tn.read_until("$") tn.write("cd ......\n") tn.read_until("$") tn.write("make\n") tn.read_until("$") tn.write("cp ... XXXX/usr/bin \n") tn.write("exit\n") print tn.read_all() 另外 想请教大家 到底什么是架构/? 软件架构/? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://python.cn/pipermail/python-chinese/attachments/20070414/3aedd636/attachment.htm
2007年04月16日 星期一 12:40
是不是大家收不到我发的信啊? On 4/14/07, jay <ggwjgg at gmail.com> wrote: > > 我的开发工作经常是在本地编辑文件,,上传到unix系统编译 > 并部署到bin目录 > > 为了方便,我在编辑器中加了个外部工具,,自己写的python脚本 > 我编辑完文件 后;;调用脚本,,脚本则ftp上传,,然后telnet上去,, > > 现在的问题是,,telnet过程中,,make编译没有问题,,可是cp拷贝操作 > 总是等很长时间,,最后只好kill这个任务 > > 部分代码如下 > > tn = telnetlib.Telnet(HOST) > tn.read_until("login: ") > tn.write(user + "\n") > tn.read_until("Password: ") > tn.write(password + "\n") > tn.read_until("$") > tn.write("cd ......\n") > tn.read_until("$") > tn.write("make\n") > tn.read_until("$") > tn.write("cp ... XXXX/usr/bin \n") > > tn.write("exit\n") > print tn.read_all() > > > 另外 想请教大家 到底什么是架构/? 软件架构/? > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://python.cn/pipermail/python-chinese/attachments/20070416/4d9dc27d/attachment.html
Zeuux © 2025
京ICP备05028076号