mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-25 00:55:38 +02:00
mktemp: add page (#7893)
This commit is contained in:
parent
c23e529ad2
commit
3f6f191892
2 changed files with 18 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
# mktemp
|
||||
|
||||
> Create a temporary file or directory.
|
||||
> More information: <https://www.gnu.org/software/autogen/mktemp.html>.
|
||||
> More information: <https://ss64.com/osx/mktemp.html>.
|
||||
|
||||
- Create an empty temporary file and print the absolute path to it:
|
||||
|
||||
|
@ -11,6 +11,6 @@
|
|||
|
||||
`mktemp --suffix "{{.ext}}"`
|
||||
|
||||
- Create a temporary directory and print the absolute path to it (non-portable long option: --directory):
|
||||
- Create a temporary directory and print the absolute path to it:
|
||||
|
||||
`mktemp -d`
|
||||
|
|
16
pages/linux/mktemp.md
Normal file
16
pages/linux/mktemp.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# mktemp
|
||||
|
||||
> Create a temporary file or directory.
|
||||
> More information: <https://www.gnu.org/software/autogen/mktemp.html>.
|
||||
|
||||
- Create an empty temporary file and print the absolute path to it:
|
||||
|
||||
`mktemp`
|
||||
|
||||
- Create an empty temporary file with a given suffix and print the absolute path to file:
|
||||
|
||||
`mktemp --suffix "{{.ext}}"`
|
||||
|
||||
- Create a temporary directory and print the absolute path to it:
|
||||
|
||||
`mktemp --directory`
|
Loading…
Add table
Reference in a new issue