ChinaUnix.net
相关文章推荐:

tcl 调试器

目前,NS支持由Don Libes开发的Otcl调试器tcl-debug,可以在网站 http://expect.nist.gov/tcl-debug 上下载。 安装步骤如下: 1. 将下载的tar包拷贝到与NS平行的目录下,例如/home/romeo/ns2/ns-allinone-2.30/下,使用命令tar -zxvf tcl-debug.tar.gz 进行解压 2. 进入解压时创见的目录tcl-debug-2.0,运行命令 ./configure --prefix=/home/romeo/ns2/ns-allinone-2.30 --with-tcl=/home/romeo/ns2/ns-allinone-2.30/tcl8.4.13/u...

by 刘健 - 网络技术文档中心 - 2008-10-16 17:20:44 阅读(1343) 回复(0)

相关讨论

怎么有perl,而没有tcl的啊,哪位高手搞个tcl论坛好不好

by xzyhope - 站务交流 - 2006-03-24 15:30:45 阅读(1546) 回复(7)

本帖最后由 rdcwayx 于 2014-02-18 10:24 编辑 有一个SubmitJob.exp 的expect脚本,内容如下:[code]#!/usr/bin/expect proc SubmitJob {usr machine} { spawn su $usr expect { "Password:" {send "$pword\r"} } expect { "$usr" {send "rsh $machine\r"} } expect { "$usr@$machine" {send "cd $lpa_run_dir/$mvsversion_lpa/$buildnum_lpa\r"} } expect { "$usr@$machine" {send "pwd\r"} } expect { "$usr@$machine" {s...

by b4and5 - Shell - 2014-02-19 09:44:00 阅读(2877) 回复(16)

http://hi.baidu.com/xipf/blog/item/085f996228e3b4d8e6113a1d.html http://hi.baidu.com/lvgb/blog/item/1b983e2a1d64823e5243c16c.html http://linux.about.com/library/cmd/blcmdln_tcl.htm http://www.lslnet.com/linux/dosc1/45/linux-316340.htm 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/27594/showart_1308200.html

by zhangyan215 - HP文档中心 - 2008-10-15 18:25:19 阅读(2300) 回复(0)

因为开发原因,应用bind9的view功能,结合数据库,利用动态语言开发dns控制程序,但是master和slave同步问题,还有dns效率和安全等等一大堆问题一直困扰着偶. 这两天突然发现tcl这个好东东,请不要误会,tcl不是王牌,也不是"太差了",而是"工具命令语言"的简称.经过两天的折腾,已经初步确定了新的开发计划,打算应用tcl Mysql Interface,编写tcl脚本,定时提取mysql中的记录...... 不知道哪位兄弟有 tcl/Tk 编程权威指南 这本书,可否谈谈...

by thatday - Linux文档专区 - 2006-10-08 16:52:39 阅读(727) 回复(0)

我在tcl脚本中想实现shell命令“cd”, 用exec cd $myDir 但exec会开一个新的进程,并在新的进程中执行cd,执行完后退出(我自己的解释,不知道对不对?),所以执行cd命令好像没有用。谁能帮忙解决一下?

by fightforever - Shell - 2003-08-08 16:36:51 阅读(4919) 回复(2)

请问: 假设: 变量$tf_2run中有 tsmc tsmc16 tsmc20 我只想用regexp匹配到tsmc,应该怎么办 regexp {tsmc} $tf_2run 这样写的话带有tsmc的都会被匹配到 谢谢

by b4and5 - Shell - 2014-01-07 15:36:25 阅读(3514) 回复(4)

set buload OFC30L40.0 buload 也可能等于PR26.9L40.0 如何提取string中的30 or 26.9

by fufelixzh - Shell - 2013-01-26 21:46:49 阅读(1088) 回复(1)