Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
该脚本将移动文件(在 中RecycleBin),但我希望将版本号附加到它。版本号包括:当前月、日、年、时、分、秒:
RecycleBin
所以文件应该是这样的:
file.081213.191134- 文件在 2013 年 8 月 12 日 19:11:34 被删除的地方。
file.081213.191134
不确定我应该使用哪种结构?
想让它尽可能简单
谢谢。
你可以试试这个:
mv $file /path/to/RecycleBin/$file.`date +"%Y%m%d.%H%M%S"`
如命令date所示:
date
$ date +"%Y%m%d.%H%M%S" 20130403.152826