关于在 tcl 中执行 *.file

发布于 2024-12-12 00:00:49 字数 172 浏览 0 评论 0原文

对于此脚本:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

谈下烟灰 2024-12-19 00:00:49

您不希望 TCL 进行通配操作 - 您希望它在 shell 中进行。试试这个

set exec_call "cvs up *.tcl"
set caught [catch {eval exec -keepnewline $exec_call } result]
if { $caught } {
  #handle the error stored in $result
} else {
  #handle success
}

You don't want TCL to do the globbing - you want it to happen in the shell. Try this

set exec_call "cvs up *.tcl"
set caught [catch {eval exec -keepnewline $exec_call } result]
if { $caught } {
  #handle the error stored in $result
} else {
  #handle success
}
深者入戏 2024-12-19 00:00:49

TCL exec 不支持全局。尝试 puts [exec cvs up [glob *.tcl]]

编辑:这不太有效;看评论。以下方法确实有效:

# These two don't work with spaces in the names:
exec echo [glob *.tcl] | xargs cvs up
exec bash -c "cvs up [glob *.tcl]"
# Use this instead:
exec bash -c "cvs up *.c"

TCL exec doesn't glob. Try puts [exec cvs up [glob *.tcl]]

Edit: That doesn't quite work; see the comments. The following methods do work:

# These two don't work with spaces in the names:
exec echo [glob *.tcl] | xargs cvs up
exec bash -c "cvs up [glob *.tcl]"
# Use this instead:
exec bash -c "cvs up *.c"
北音执念 2024-12-19 00:00:49

如果您使用的是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文