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

  1. (Desktop) 24 % file link a b
  2. could not create new link "a": target "b" doesn't exist
  3. (Desktop) 25 % close [open b w]
  4. (Desktop) 27 % file link a b
  5. b
  6. (Desktop) 28 % glob ?
  7. a b
  8. (Desktop) 29 % file rename b c
  9. (Desktop) 30 % glob ?
  10. a c
  11. (Desktop) 31 % file exists a
  12. 1
  13. (Desktop) 32 % file exists c
  14. 1
  15. (Desktop) 33 % file lstat a xx
  16. (Desktop) 34 % parray xx
  17. xx(atime) = 1598393557
  18. xx(ctime) = 1598393557
  19. xx(dev) = 2
  20. xx(gid) = 0
  21. xx(ino) = 47149
  22. xx(mode) = 33206
  23. xx(mtime) = 1598393557
  24. xx(nlink) = 2
  25. xx(size) = 0
  26. xx(type) = file
  27. xx(uid) = 0
  28. (Desktop) 35 %