mktemp.md: add page (#1393)

This commit is contained in:
Starbeamrainbowlabs
2017-05-26 10:28:13 +01:00
committed by Waldir Pimenta
parent 57a982446a
commit a50427e89f

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}}"`