Posted to tcl by avl at Tue Aug 25 22:18:57 GMT 2020view pretty

(Desktop) 24 % file link a b
could not create new link "a": target "b" doesn't exist
(Desktop) 25 % close [open b w]
(Desktop) 27 % file link a b
b
(Desktop) 28 % glob ?
a b
(Desktop) 29 % file rename b c
(Desktop) 30 % glob ?
a c
(Desktop) 31 % file exists a
1
(Desktop) 32 % file exists c
1
(Desktop) 33 % file lstat a xx
(Desktop) 34 % parray xx
xx(atime) = 1598393557
xx(ctime) = 1598393557
xx(dev)   = 2
xx(gid)   = 0
xx(ino)   = 47149
xx(mode)  = 33206
xx(mtime) = 1598393557
xx(nlink) = 2
xx(size)  = 0
xx(type)  = file
xx(uid)   = 0
(Desktop) 35 %