Create virtual directories (QNX)
vdir [options]... &
The vdir utility lets you create a "virtual" directory that exists entirely in RAM.
This small utility is especially useful, for example, with spool files or temporary data in a memory-restricted environment. In such cases, vdir can be used with the -D option in order to increase/decrease its size as necessary.
Since vdir modifies the prefix tree, root privileges are necessary to use it. |
Create a virtual directory in "malloc" mode:
vdir &
Create a virtual directory named /tmp with a maximum size of 1 megabyte in dynamic mode:
vdir -D -m1M -n /tmp &
The vdir utility doesn't handle hard links or symbolic links.