소스 검색

mktemp.md: add page (#1393)

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