1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 20:35:26 +02:00

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