You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1010 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

tempfile
===
shell中给临时文件命名
## 说明
有时候在写Shell脚本的时候需要一些临时存储数据的才做最适合存储临时文件数据的位置就是`/tmp`,因为该目录中所有的内容在系统重启后就会被清空。下面是两种方法为临时数据生成标准的文件名。
### tempfile命令
`tempfile命令`只有在基于Debian的发行版中才默认自带比如Ubuntu其他发行版没有这个命令。
用tempfile命令为一个临时文件命名
```
temp_file_name=$(tempfile)
```
用一个加带了随机数的文件名作为临时文件命名:
```
temp_file_name="/tmp/file_$RANDOM"
```
$RANDOM是一个返回随机数的环境变量。
### $$变量
如果没有tempfile命令的Linux发行版也可以使用自己的临时文件名
```
temp_file_name="/tmp/file.$"
```
`$$`是系统预定义变量,显示当前所在进程的进程号,用`.$$`作为添加的后缀会被扩展成当前运行脚本的进程id。