Starbeamrainbowlabs пре 7 година
родитељ
комит
a50427e89f
1 измењених фајлова са 15 додато и 0 уклоњено
  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}}"`