- 批量删除500万个文件
rsync -av --delete empty/ demo/ --exclude-from=exclude.txt
# rsync 快速通用的远程和本地文件复制工具
# empty/ 源目录 空目录,需要带/
# demo/ 目标目录 500万个文件目录,需要带/
# --delete 从目标目录中删除不在源目录的文件
# --exclude-from 从文件列表中排除某些文件, 这个需要接在demo/之后,对demo/生效
# exclude.txt 文件列表,每行一个文件名
[root@localhost ~]# cat exclude.txt
1000
2000
4000
5000
8888
- 修改系统时间
[root@localhost ~]# timedatectl
Local time: 日 2024-04-28 13:56:25 CST
Universal time: 日 2024-04-28 05:56:25 UTC
RTC time: 日 2024-04-28 05:56:25
Time zone: Asia/Shanghai (CST, +0800)
NTP enabled: yes
NTP synchronized: yes
RTC in local TZ: no
DST active: n/a
# Local time本地时间 = Universal timeUTC时间 + timezone偏移量
# RTC 硬件时间 UTC时间和RTC时间需要一致
# 修改时间
date -s "2008-08-08 00:00:00" && hwclock -w
#或
timedatectl set-time "2008-08-08 00:00:00"
标签:00,技巧,运维,--,demo,08,抖音,time,exclude
From: https://www.cnblogs.com/forlive/p/18163663