iTCL Documentation
Briefly:
1. New Internal commands (getting rid off !commands for itcl)
2. Multiple interpreters (pool)
3. 'puts' for stdout changed to 'iputs'
New commands:
resolve pwd <pwd>
Return: Path on success, "" on error
---
resolve uid <Uid>
Return: UserName on success, "" on error
---
resolve gid <Gid>
Return: GroupName on success, "" on error
---
resolve group <Group>
Return: Gid on success, -1 on error
---
resolve user <User>
Return: Uid on success, -1 on error
---
vfs read <directory/file>
Return: "Uid Gid Mode" on success and "" on error
---
vfs write <directory/file> <Uid> <Gid> <Mode>
Return: 0 on success and 1 on error
---
vfs delete <directory/file>
Return always 0
--
config read <array> <variable>
Return: Value on success and "" on error
--
config reload
--
config save
--
|