参数中带有文件的 tcl exec 不起作用

发布于 2024-11-06 14:24:43 字数 944 浏览 1 评论 0原文

我正在 TCL/Tk 中开发文件浏览器,我想添加一些东西来执行当前选择的命令(使用 %l %f)%l 执行完整列表,%f 执行每个文件的命令。 我唯一的问题是,如果我输入像“gedit”这样的命令,例如它可以工作,但是一旦我输入带有参数的命令,它就不起作用...... 我到处找了还是没明白... 如果有人能帮助我... btw getl var Name 是一个函数,它返回完整路径(/home/...)中的文件名,如果我返回应该执行的字符串并将其放入终端中,它就可以工作...

这是代码:

proc tl_exec {liste command } {
#lorsqu'il faut effectué la commande avec la liste en param
if { [string first "%l" $command] > 0} {
  foreach v $liste {
     lappend args [getl $v Name]
  } 
    set com [string map [list "%l" [join $args " "] ] $command ]
  puts $com
    set val [exec [split $com " "] ]
} elseif { [string first "%f" $command] > 0} {
#lorsqu'il faut effectué la commande pour chaque fichier        
  foreach v $liste {
            set com [string map list ["%f" [getl $v "Name"] ] $command ]
            lappend val [ exec [split $com " "] ]
    }
} else {
#lorsqu'on a pas de fichiers 
    set val [exec $command]
}
}

多谢

I'm working on a file explorer inTCL/Tk and I want to add a little thing to execute commands with the current selection (using %l %f) %l executing with the full list and %f executing the commmand with each file.
my only problem is that if I type a command like "gedit" for eg it works but as soon as I type a command with argument it doesn't work ...
I've been looking everywhere and I don't get it...
If someone could help me...
btw getl var Name is a function that returns me a FileName in full path (/home/...) and if I return the string that is supposed to be executed and put it in a terminal it works...

Here is the code:

proc tl_exec {liste command } {
#lorsqu'il faut effectué la commande avec la liste en param
if { [string first "%l" $command] > 0} {
  foreach v $liste {
     lappend args [getl $v Name]
  } 
    set com [string map [list "%l" [join $args " "] ] $command ]
  puts $com
    set val [exec [split $com " "] ]
} elseif { [string first "%f" $command] > 0} {
#lorsqu'il faut effectué la commande pour chaque fichier        
  foreach v $liste {
            set com [string map list ["%f" [getl $v "Name"] ] $command ]
            lappend val [ exec [split $com " "] ]
    }
} else {
#lorsqu'on a pas de fichiers 
    set val [exec $command]
}
}

Thanks a lot

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

我不是你的备胎 2024-11-13 14:24:43

您的代码有多个问题,它也可能会因文件名中的特殊字符或空格而中断,因为您根本不引用。

但你对 exec 将所有内容视为单个命令是正确的。

set val [exec [split $com " "] ]

不符合您的预期, split 返回一个列表,但不会自动将该列表转换为 exec 的额外参数。

如果您使用 Tcl 8.5,您可以尝试:

set val [exec {*}[split $com " "] ]

将列表转换为单个参数以传递给 exec。

但您使用的代码通常很脆弱,因为您不处理任何退出代码或写入 stderr 的程序,因此需要更复杂的解决方案才能保持稳健。

看看 http://wiki.tcl.tk/1039 特别是底部的讨论页。

Your code has more than a single problem, it will probably break with special chars or spaces in filenames too, as you do not quoting at all.

But you are right about exec considering everything as a single command.

set val [exec [split $com " "] ]

does not do what you expect, split returns a list, but does not automagically turn that list into extra args for exec.

If you use Tcl 8.5 you can try:

set val [exec {*}[split $com " "] ]

which turns the list into single arguments to pass to exec.

But the code you use is brittle in general, as you do not handle any exit codes or programs writing to stderr, so a more elaborate solution would be needed to be robust.

Have a look at http://wiki.tcl.tk/1039 especially the discussions on the bottom of the page.

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