Linux s17.hosterpk.com 6.12.0-124.55.3.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:54:02 EDT 2026 x86_64
LiteSpeed
Server IP : 192.169.89.90 & Your IP : 216.73.216.41
Domains :
Cant Read [ /etc/named.conf ]
User : hamzalar
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
tcl8.6 /
Delete
Unzip
Name
Size
Permission
Date
Action
encoding
[ DIR ]
drwxr-xr-x
2026-03-12 15:12
http1.0
[ DIR ]
drwxr-xr-x
2026-03-12 15:12
msgs
[ DIR ]
drwxr-xr-x
2026-03-12 15:12
opt0.4
[ DIR ]
drwxr-xr-x
2026-03-12 15:12
tzdata
[ DIR ]
drwxr-xr-x
2026-03-12 15:12
auto.tcl
20.58
KB
-rw-r--r--
2024-10-29 00:00
clock.tcl
125.87
KB
-rw-r--r--
2024-10-29 00:00
history.tcl
7.71
KB
-rw-r--r--
2024-10-29 00:00
init.tcl
24.05
KB
-rw-r--r--
2024-10-29 00:00
package.tcl
22.7
KB
-rw-r--r--
2024-10-29 00:00
parray.tcl
816
B
-rw-r--r--
2024-10-29 00:00
safe.tcl
39.97
KB
-rw-r--r--
2024-10-29 00:00
tclIndex
5.41
KB
-rw-r--r--
2024-10-29 00:00
tm.tcl
11.55
KB
-rw-r--r--
2024-10-29 00:00
word.tcl
4.76
KB
-rw-r--r--
2024-10-29 00:00
Save
Rename
# 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)] } }