当前位置:网站首页>shell脚本中的DATE日期计算
shell脚本中的DATE日期计算
2022-04-23 15:36:00 【jack@london】
在shell脚本中,有时候需要为文件命名为当前日期date
#!/bin/sh
DATE=`date +%F`
echo "$DATE"
v_date=`date +%F`
echo "$v_date"
# 计算前一天
v_date_ago_1=`date -d "$v_date -1 day" +%Y-%m-%d`
echo "$v_date_ago_1"
# 计算前一天,变换为%F格式
v_date_ago_1=`date -d "$v_date -1 day" +%F`
echo "$v_date_ago_1"
# 计算后一天
v_date_future_1=`date -d "$v_date 1 day" +%F`
echo "$v_date_future_1"
则chmod 后执行,输出分别如下
2022-04-21
2022-04-21
2022-04-20
2022-04-20
2022-04-22
注意:shell脚本中等号 ‘=’前后,千万不要有空格。
这个日期计算,可以用于定期清理旧的备份文件,比如删除7天前的db备份文件。
OLD_DATE=`date -d "$DATE -7 day" +%F`
rm $BCK_DIR/db_$OLD_DATE.* -f
参见
版权声明
本文为[jack@london]所创,转载请带上原文链接,感谢
https://blog.csdn.net/figosoar/article/details/124317300
边栏推荐
- 网站某个按钮样式爬取片段
- Explanation of redis database (IV) master-slave replication, sentinel and cluster
- Sword finger offer (1) -- for Huawei
- pgpool-II 4.3 中文手册 - 入门教程
- Detailed explanation of redirection and request forwarding
- [backtrader source code analysis 18] Yahoo Py code comments and analysis (boring, interested in the code, you can refer to)
- G007-hwy-cc-estor-03 Huawei Dorado V6 storage simulator construction
- Mobile finance (for personal use)
- 开源项目推荐:3D点云处理软件ParaView,基于Qt和VTK
- adobe illustrator 菜單中英文對照
猜你喜欢

Multitimer V2 reconstruction version | an infinitely scalable software timer

Machine learning - logistic regression

Mumu, go all the way

Wechat applet customer service access to send and receive messages

Mobile finance (for personal use)

c语言---字符串+内存函数

Basic concepts of website construction and management

Today's sleep quality record 76 points

山寨版归并【上】

Byte interview programming question: the minimum number of K
随机推荐
Nacos程序连接MySQL8.0+ NullPointerException
字节面试 transformer相关问题 整理复盘
Precautions for use of dispatching system
【递归之数的拆分】n分k,限定范围的拆分
码住收藏▏软件测试报告模板范文来了
Kubernetes详解(九)——资源配置清单创建Pod实战
Wechat applet customer service access to send and receive messages
What exactly does the distributed core principle analysis that fascinates Alibaba P8? I was surprised after reading it
c语言---指针进阶
今日睡眠质量记录76分
PHP operators
The El tree implementation only displays a certain level of check boxes and selects radio
通过 PDO ODBC 将 PHP 连接到 MySQL
Mysql database explanation (IX)
X509 certificate cer format to PEM format
CVPR 2022 优质论文分享
Common interview questions of operating system:
MySQL Basics
cadence SPB17. 4 - Active Class and Subclass
Mysql连接查询详解