Jelajahi Sumber

mktemp.md: add page (#1393)

Starbeamrainbowlabs 7 tahun lalu
induk
melakukan
a50427e89f
1 mengubah file dengan 15 tambahan dan 0 penghapusan
  1. 15 0
      pages/common/mktemp.md

+ 15 - 0
pages/common/mktemp.md

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