mktemp.md: add page (#1393)

coverage
Starbeamrainbowlabs 2017-05-26 10:28:13 +01:00 committed by Waldir Pimenta
parent 57a982446a
commit a50427e89f
1 changed files with 15 additions and 0 deletions

15
pages/common/mktemp.md Normal file
View File

@ -0,0 +1,15 @@
# 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 --directory`
- Create a temporary file with a specified suffix:
`mktemp --suffix "{{.txt}}"`