Sep032012
linux创建以当前日期命名的文件
问题:我想在Linux中建一个以当前日期命名的文件,该怎么做
很简单,一行命令搞定。
1 touch ` date +%y%m%d`前后可按需要添加字符。如后面加上.log以示它是一个日志文件。
1 touch ` date +%y%m%d`.log要注意 date前面的那个符号,不是单引号,而是键盘上数字1左边的字符。
本文固定链接: https://iplaylinux.com/create-file-with-current-date-in-linux.html | Linux玩家