关于在 tcl 中执行 *.file
对于此脚本:
puts [exec cvs up *.tcl]
我想更新此文件夹下的所有 .tcl 文件。
但我总是收到“cvs update:对 *.tcl 一无所知”错误消息。
我该如何解决这个问题?
非常感谢
for this script:
puts [exec cvs up *.tcl]
I want to cvs updtae all the .tcl file under this folder.
But I always get "cvs update: nothing known about *.tcl" error msg.
How can I solve this?
Many thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您不希望 TCL 进行通配操作 - 您希望它在 shell 中进行。试试这个
You don't want TCL to do the globbing - you want it to happen in the shell. Try this
TCL
exec
不支持全局。尝试puts [exec cvs up [glob *.tcl]]
编辑:这不太有效;看评论。以下方法确实有效:
TCL
exec
doesn't glob. Tryputs [exec cvs up [glob *.tcl]]
Edit: That doesn't quite work; see the comments. The following methods do work:
如果您使用的是 Tcl 8.5,请使用列表扩展语法:
exec cvs up {*}[glob *.tcl]
如果您使用的是较旧的 Tcl:
eval [linsert [glob *.tcl] 0 执行cvs up]
或
eval [concat exec cvs up [glob *.tcl]]
前者更安全。
If you have Tcl 8.5, use the list expand syntax:
exec cvs up {*}[glob *.tcl]
If you have an older Tcl:
eval [linsert [glob *.tcl] 0 exec cvs up]
or
eval [concat exec cvs up [glob *.tcl]]
The former is safer.