shitbox/pkg/usr/share/nu/completions/mktemp.nu

16 lines
510 B
Plaintext

module completions {
# create a unique temporary file
export extern mktemp [
--directory(-d) # create a directory instead of a file
--tmpdir(-p): string # specify the directory to create temporary files in
--template(-t): string # specify a prefix to append to the created files
--dryrun(-u) # immediately remove created files and directories
--help(-h) # Print help
--version(-V) # Print version
]
}
use completions *