mirror of https://github.com/CrimsonTome/tldr.git
mktemp.md: add page (#1393)
parent
57a982446a
commit
a50427e89f
|
@ -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}}"`
|
Loading…
Reference in New Issue