请问在Linux中做计划任务压缩文件时,如何在文件名中加上当前系统时间
3个回答
展开全部
tar -cvf filename-$(date +%Y%m%d%H%m%S).tar file1 file2 dir1/* dir2/* ...
%Y 年
%m 月
%d 日
%H 小时
%m 分钟
%S 秒
自己去掉不要的
%Y 年
%m 月
%d 日
%H 小时
%m 分钟
%S 秒
自己去掉不要的
追问
我刚试过,手动添加压缩文件的时候能够将时间添加上去,但用计划任务就不行了。能帮忙把计划任务的详细命令一起发下吗
追答
[root@ ~]# ls -l
total 112
-rw-------. 1 root root 1981 Mar 15 18:43 anaconda-ks.cfg
drwxr-xr-x. 2 root root 4096 Mar 15 18:47 Desktop
drwxr-xr-x. 2 root root 4096 Mar 15 18:47 Documents
drwxr-xr-x. 2 root root 4096 Mar 15 18:47 Downloads
-rw-r--r--. 1 root root 60250 Mar 15 18:43 install.log
-rw-r--r--. 1 root root 11081 Mar 15 18:39 install.log.syslog
drwxr-xr-x. 2 root root 4096 Mar 15 18:47 Music
drwxr-xr-x. 2 root root 4096 Mar 15 18:47 Pictures
drwxr-xr-x. 2 root root 4096 Mar 15 18:47 Public
drwxr-xr-x. 2 root root 4096 Mar 15 18:47 Templates
drwxr-xr-x. 2 root root 4096 Mar 15 18:47 Videos
[root@ ~]# at now + 1min
at> tar -cvf filename-$(date +%Y%m%d%H%m%S).tar anaconda-ks.cfg Templates/*
at>
job 2 at 2012-04-25 14:37
[root@ ~]# date
Wed Apr 25 14:40:47 CST 2012
You have new mail in /var/spool/mail/root
[root@ ~]# ls -l
total 124
-rw-------. 1 root root 1981 Mar 15 18:43 anaconda-ks.cfg
drwxr-xr-x. 2 root root 4096 Mar 15 18:47 Desktop
drwxr-xr-x. 2 root root 4096 Mar 15 18:47 Documents
drwxr-xr-x. 2 root root 4096 Mar 15 18:47 Downloads
-rw-r--r-- 1 root root 10240 Apr 25 14:37 filename-20120425140427.tar
-rw-r--r--. 1 root root 60250 Mar 15 18:43 install.log
-rw-r--r--. 1 root root 11081 Mar 15 18:39 install.log.syslog
drwxr-xr-x. 2 root root 4096 Mar 15 18:47 Music
drwxr-xr-x. 2 root root 4096 Mar 15 18:47 Pictures
drwxr-xr-x. 2 root root 4096 Mar 15 18:47 Public
drwxr-xr-x. 2 root root 4096 Mar 15 18:47 Templates
drwxr-xr-x. 2 root root 4096 Mar 15 18:47 Videos
[root@ ~]#
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询