Bash生成临时文件名
2018-02-08 本文已影响0人
CodingCode
Bash生成临时文件命名例子
#!/bin/bash
typeset tmpfile="/tmp/tmpfile.$$.$(date +'%Y%m%d_%H%M%S').${RANDOM}"
touch ${tmpfile}
// ...
// Write your codes here to handle ${tmpfile}
// ...
rm -f ${tmpfile}
生成的最终例子
/tmp/tmpfile.794.20180208_151353.6279
/tmp/tmpfile.13454.20180208_151422.49