/usr/lib/games/netmaze/xnetserv-send.tcl is in netmaze 0.81+jpg0.82-14.1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #!/usr/bin/wish8.5 -f
puts $argv
set cmdlist [split "$argv" "!"]
set i [expr [llength $cmdlist] -1]
set x 0
while {$x<=$i} {
set sendcommand "[lindex $cmdlist $x]"
eval send xnetserv.tcl {$sendcommand}
incr x
}
# set sendcommand "$argv"
# eval send xnetserv.tcl {$sendcommand}
exit
|