computer_knowledge_notes/Software/文件管理/mktemp.md

8 lines
277 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

```
mktemp [options] [TMP] # 创建临时文件或文件夹
# 如不指定TMP,则默认其值为 tmp.XXXXXXXXXX在/tmp目录下创建文件
# 如指定TMP,则它至少应包含3个XXX在当前目录下创建文件
# 一个X代表一个随机数字或字母
```