mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-10 11:29:59 +03:00
8193af1c35
Closes #1836
293 B
293 B
mktemp
Create a temporary file or directory.
- Create an empty temporary file and return the absolute path to it:
mktemp
- Create a temporary directory and return the absolute path to it:
mktemp -d
- Create a temporary file with a specified suffix:
mktemp --suffix "{{.txt}}"