16 lines
387 B
Plaintext
16 lines
387 B
Plaintext
|
module completions {
|
||
|
|
||
|
# run command or interactive shell with special root directory
|
||
|
export extern chroot [
|
||
|
--directory(-d): string # change to this directory after performing the chroot instead of '/'
|
||
|
newroot: string
|
||
|
command?: string
|
||
|
...arg: string
|
||
|
--help(-h) # Print help
|
||
|
--version(-V) # Print version
|
||
|
]
|
||
|
|
||
|
}
|
||
|
|
||
|
use completions *
|