创建shel脚本 -- 自动备份用户文件

文章目录

  • 1 按天自动备份(归档)文件
    • 1.1 准备工作
    • 1.2 编写`配置文件`和`归档脚本`
      • 1.2.1 编写`配置文件`
      • 1.2.2 编写`归档脚本`
    • 1.3 运行脚本
    • 1.4 运行分析
    • 1.5 添加到`cron`表中
      • 1.5.1 编辑`cron`表
      • 1.5.2 测试脚本是否可用
  • 2 按小时自动备份(归档)文件
    • 2.1 准备工作
    • 2.2 编写`配置文件`和`归档脚本`
      • 2.2.1 编写`配置文件`
      • 2.2.2 编写`归档脚本`
    • 2.3 运行脚本
    • 2.4 运行分析
    • 2.5 添加到`cron`表中
      • 2.5.1 编辑`cron`表
      • 2.5.2 测试脚本是否可用

1 按天自动备份(归档)文件

1.1 准备工作

# 创建一个集中归档仓库目录
sudo mkdir /archive# 创建一个用户组的方式,为需要在集中归档目录中创建文件的用户授权
sudo groupadd Archivers
## 更改目录所属组
sudo chgrp Archivers /archive
## 查看更改目录所属组是否成功
ls -ld /archive# 将需要备份的用户添加到用户组
sudo usermod -aG Archivers bobo# 修改目录权限
sudo chmod 775 /archive
## 查看修改目录权限是否成功
ls -ld /archive# 登出再登入使组成员关系生效 --> 效果:只要是该组的成员,无需超级用户权限就可以在目录中创建文件了。
exit
登录# 将目录的粘滞位加上 --> 效果:为了防止其他用户不小心删除其他用户文件
sudo chmod +t /archive
## 查看将目录的粘滞位加上是否成功(如果设置了粘滞位,输出中目录权限的最后一个字符会是一个 t)
ls -ld /archive

1.2 编写配置文件归档脚本

1.2.1 编写配置文件

# 创建配置文件
vi Files_To_Backup
# 添加下面内容 -- 这里面的内容根据自己的需要进行配置
/home/bobo/Project
/home/bobo/Downloads
/home/Does_not_exist
/home/bobo/Documents
# 将配置文件移动到 /archive 目录下面
mv Files_To_Backup /archive

1.2.2 编写归档脚本

# 创建配置文件
vi Daily_Archive.sh
# 添加下面内容
#!/bin/bash
#
# Daily_Archive - Archive designated files & directories
########################################################
#
# Gather Current Date
#
DATE=$(date +%y%m%d)
#
# Set Archive File Name
#
FILE=archive$DATE.tar.gz
#
# Set Configuration and Destination File
#
CONFIG_FILE=/archive/Files_To_Backup
DESTINATION=/archive/$FILE
#
######### Main Script #########################
#
# Check Backup Config file exists
#
if [ -f $CONFIG_FILE ] # Make sure the config file still exists.
then # If it exists, do nothing but continue on.echoelse # If it doesn't exist, issue error & exit script.echoecho "$CONFIG_FILE does not exist."echo "Backup not completed due to missing Configuration File"echo
exit
fi
#
# Build the names of all the files to backup
#
FILE_NO=1 # Start on Line 1 of Config File.
exec < $CONFIG_FILE # Redirect Std Input to name of Config File
#
read FILE_NAME # Read 1st record
#
while [ $? -eq 0 ] # Create list of files to backup.
do
# Make sure the file or directory exists.
if [ -f $FILE_NAME -o -d $FILE_NAME ]
then# If file exists, add its name to the list.FILE_LIST="$FILE_LIST $FILE_NAME"
else# If file doesn't exist, issue warningechoecho "$FILE_NAME, does not exist."echo "Obviously, I will not include it in this archive."echo "It is listed on line $FILE_NO of the config file."echo "Continuing to build archive list..."echo
fi
#
FILE_NO=$[$FILE_NO + 1] # Increase Line/File number by one.
read FILE_NAME # Read next record.
done
#
#######################################
#
# Backup the files and Compress Archive
#
echo "Starting archive..."
echo
#
tar -czf $DESTINATION $FILE_LIST 2> /dev/null
#
echo "Archive completed"
echo "Resulting archive file is: $DESTINATION"
echo
#
exit

1.3 运行脚本

# 为脚本添加执行权限
chmod u+x Daily_Archive.sh
## 查看为脚本添加执行权限是否成功
ls -l Daily_Archive.sh# 运行脚本文件
./Daily_Archive.sh# 查看运行结果
ls /archive

1.4 运行分析

bobo@thj:~$ ./Daily_Archive.sh/home/Does_not_exist, does not exist.
Obviously, I will not include it in this archive.
It is listed on line 3 of the config file.
Continuing to build archive list...Starting archive...Archive completed
Resulting archive file is: /archive/archive240227.tar.gzbobo@thj:~$ ls /archive/
Files_To_Backup  archive240227.tar.gz

运行脚本之后,如果待备份的文件不存在,将不会被备份;如果存在,将会被备份。

1.5 添加到cron表中

1.5.1 编辑cron

# 将脚本添加到 `cron` 表中,以便每天自动执行归档脚本
crontab -e
## 选择你熟悉的编辑器,我选择 vim, 添加下面代码 --> 效果:每月每周的每一天的0时0分执行这个脚本
0 0 * * * /home/bobo/Daily_Archive.sh 
## 检查是否添加成功
crontab -l# 修改Daily_Archive.sh脚本以便添加一个日志处理错误,修改情况如下:
bobo@thj:~$ head Daily_Archive.sh
#!/bin/bash
#
# Set a daily_archive.log --> 效果:将脚本的标准输出和错误输出重定向到日志文件
exec > /home/bobo/daily_archive.log 2>&1 
#
# Daily_Archive - Archive designated files & directories
########################################################
#
# Gather Current Date
#

1.5.2 测试脚本是否可用

# 运行脚本文件
./Daily_Archive.sh# 查看日志文件
bobo@thj:~$ cat daily_archive.log/home/Does_not_exist, does not exist.
Obviously, I will not include it in this archive.
It is listed on line 3 of the config file.
Continuing to build archive list...Starting archive...Archive completed
Resulting archive file is: /archive/archive240227.tar.gz# 查看运行结果
ls /archive

2 按小时自动备份(归档)文件

2.1 准备工作

# 创建一个集中归档仓库目录
sudo mkdir /archive/hourly# 上面已经创建组了,这里就省略
## 更改目录所属组
sudo chgrp Archivers /archive/hourly
## 查看更改目录所属组是否成功
ls -ld /archive/hourly# 将需要备份的用户添加到用户组
# 省略# 修改目录权限
sudo chmod 775 /archive/hourly
## 查看修改目录权限是否成功
ls -ld /archive/hourly# 登出再登入使组成员关系生效 --> 效果:只要是该组的成员,无需超级用户权限就可以在目录中创建文件了。
# 省略# 将目录的粘滞位加上 --> 效果:为了防止其他用户不小心删除其他用户文件
sudo chmod +t /archive/hourly
## 查看将目录的粘滞位加上是否成功(如果设置了粘滞位,输出中目录权限的最后一个字符会是一个 t)
ls -ld /archive/hourly

2.2 编写配置文件归档脚本

2.2.1 编写配置文件

# 创建配置文件
vi Files_To_Backup
# 添加下面内容 -- 这里面的内容根据自己的需要进行配置
/usr/local/Production/Machine_Errors
/home/Development/Simulation_Logs
# 将配置文件移动到 /archive/hourly 目录下面
mv Files_To_Backup /archive/hourly

2.2.2 编写归档脚本

# 创建配置文件
vi Hourly_Archive.sh
# 添加下面内容
#!/bin/bash
#
# Hourly_Archive - Every hour create an archive
#########################################################
#
# Set Configuration File
#
CONFIG_FILE=/archive/hourly/Files_To_Backup
#
# Set Base Archive Destination Location
#
BASEDEST=/archive/hourly
#
# Gather Current Day, Month & Time
#
DAY=$(date +%d)
MONTH=$(date +%m)
TIME=$(date +%k%M)
#
# Create Archive Destination Directory
#
mkdir -p $BASEDEST/$MONTH/$DAY
#
# Build Archive Destination File Name
#
DESTINATION=$BASEDEST/$MONTH/$DAY/archive$TIME.tar.gz
#
########## Main Script ####################
#
# Check Backup Config file exists
#
if [ -f $CONFIG_FILE ] # Make sure the config file still exists.
then # If it exists, do nothing but continue on.echoelse # If it doesn't exist, issue error & exit script.echoecho "$CONFIG_FILE does not exist."echo "Backup not completed due to missing Configuration File"echo
exit
fi
#
# Build the names of all the files to backup
#
FILE_NO=1 # Start on Line 1 of Config File.
exec < $CONFIG_FILE # Redirect Std Input to name of Config File
#
read FILE_NAME # Read 1st record
#
while [ $? -eq 0 ] # Create list of files to backup.
do
# Make sure the file or directory exists.
if [ -f $FILE_NAME -o -d $FILE_NAME ]
then# If file exists, add its name to the list.FILE_LIST="$FILE_LIST $FILE_NAME"
else# If file doesn't exist, issue warningechoecho "$FILE_NAME, does not exist."echo "Obviously, I will not include it in this archive."echo "It is listed on line $FILE_NO of the config file."echo "Continuing to build archive list..."echo
fi
#
FILE_NO=$[$FILE_NO + 1] # Increase Line/File number by one.
read FILE_NAME # Read next record.
done
#
#######################################
#
# Backup the files and Compress Archive
#
echo "Starting archive..."
echo
#
tar -czf $DESTINATION $FILE_LIST 2> /dev/null
#
echo "Archive completed"
echo "Resulting archive file is: $DESTINATION"
echo
#
exit

2.3 运行脚本

# 为脚本添加执行权限
chmod u+x Hourly_Archive.sh
## 查看为脚本添加执行权限是否成功
ls -l Hourly_Archive.sh# 运行脚本文件
./Hourly_Archive.sh# 查看运行结果
ls /archive/hourly

2.4 运行分析

bobo@thj:~$ ./Hourly_Archive.shStarting archive...Archive completed
Resulting archive file is: /archive/hourly/02/27/archive1343.tar.gzbobo@thj:~$ ls -l /archive/hourly/02/27/
total 4
-rw-r--r-- 1 bobo bobo 181 Feb 27 13:43 archive1343.tar.gz
bobo@thj:~$ ./Hourly_Archive.shStarting archive...Archive completed
Resulting archive file is: /archive/hourly/02/27/archive1344.tar.gzbobo@thj:~$ ls -l /archive/hourly/02/27/
total 8
-rw-r--r-- 1 bobo bobo 181 Feb 27 13:43 archive1343.tar.gz
-rw-r--r-- 1 bobo bobo 181 Feb 27 13:44 archive1344.tar.gz

备份成功~

2.5 添加到cron表中

2.5.1 编辑cron

# 将脚本添加到 `cron` 表中,以便每天自动执行归档脚本
crontab -e
## 添加下面代码 --> 效果:每月每周的每一天的0时0分执行这个脚本
0 0 * * * /home/bobo/Hourly_Archive.sh
## 检查是否添加成功
crontab -l# 修改Hourly_Archive.sh脚本以便添加一个日志处理错误,修改情况如下:
bobo@thj:~$ head Hourly_Archive.sh
#!/bin/bash
#
# Set a Hourly_Archive.log
exec > /home/bobo/hourly_archive.log 2>&1 // 脚本的标准输出和错误输出重定向到日志文件
#
# Hourly_Archive.sh - Archive designated files & directories
########################################################
#
# Gather Current Date
#

2.5.2 测试脚本是否可用

bobo@thj:~$ ./Hourly_Archive.sh
bobo@thj:~$ cat hourly_archive.logStarting archive...Archive completed
Resulting archive file is: /archive/hourly/02/27/archive1403.tar.gzbobo@thj:~$ ls /archive/hourly/02/27/
archive1343.tar.gz  archive1344.tar.gz  archive1403.tar.gz
bobo@thj:~$

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/705781.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

git配置SSH

gitLab在Cenos7中安装&#xff0c;在Cenos7系统中执行以下操作 1.生成SSH ssh-keygen -t rsa -C xxxxxx.com 然后一路回车,直到出现以下界面为止(-C 参数是邮箱地址) 2.复制SSH 打开/root/.ssh/id_rsa.pub文件&#xff0c;复制其中的内容 在Linux系统中&#xff0c;/root/.…

初谈软件工程(一)

我就读于兰州交通大学的软件工程专业。虽然在全国众多的985、211高校中&#xff0c;兰州交通大学可能并不显眼&#xff0c;似乎未能跻身这些所谓的“顶尖”行列就意味着不被认可。然而&#xff0c;在甘肃省的教育领域中&#xff0c;它无疑是一座璀璨的明珠&#xff0c;名列前茅…

使用R语言进行主成分和因子分析

一、数据描述 数据来源2013年各地区水泥制造业规模以上企业的各主要经济指标&#xff0c;原始数据来源于2014年&#xff08;《中国水泥统计年鉴》&#xff09;&#xff0c;试对用主成分和因子进行经济效益评价。 地区,企业个数&#xff08;亿元&#xff09;,流动资产合计&…

半监督节点分类-graph learning

半监督节点分类相当于在一个图当中&#xff0c;用一部分节点的类别上已知的&#xff0c;有另外一部分节点的类别是未知的&#xff0c;目标是使用有标签的节点来推断没有标签的节点 注意 半监督节点分类属于直推式学习&#xff0c;直推式学习相当于出现新节点后&#xff0c;需要…

游戏服务器业务线程模型探究

游戏服务器业务线程模型是指在游戏服务器中,如何组织和管理线程来处理游戏业务逻辑,尽可能减少不必要的锁竞争。以下介绍几种常见的游戏服务器线程模型。 使用线程组为每个玩家分配线程 这里使用线程组,而不是线程池,主要是为了强调线程池在处理任务自主权比较弱。我们通…

pytest-配置项目不同环境URL

pytest自动化中&#xff0c;在不同环境进行测试&#xff0c;可以将项目中的url单独抽取出来&#xff0c;通过pytest.ini配置文件实现&#xff08;类似postman中的“Environments”&#xff09; 使用步骤&#xff1a; 1&#xff09;安装pytest-base-url插件 pytest-base-url …

阿里云国际云解析DNS如何开启/关闭流量分析?

流量分析服务会涉及产生日志费用&#xff0c;所以开通内网DNS解析服务后&#xff0c;默认不会主动开启流量分析&#xff0c;需要您手动开启流量分析。对于未开启流量分析的用户&#xff0c;进入界面会提示您展示的都是模拟数据&#xff0c;您可以点击开启流量分析服务&#xff…

C语言中的动态数组:原理、实现与应用

引言 在C语言的世界里&#xff0c;静态数组虽然方便易用&#xff0c;但其固定的大小限制了其适应灵活变化的数据场景的能力。相比之下&#xff0c;动态数组作为一种能够在运行时动态调整容量的数组结构&#xff0c;极大地提升了程序处理可变规模数据集的效率和便利性。本文将深…

【PHP进阶】Redis管道技术的实际运用

大家好&#xff0c;我是程序员若风&#xff0c;又到了技术分享时刻。 今天我们来讲讲Redis管道技术 Redis管道技术介绍 Redis流水线技术是一种通过同时发出多个命令来提高性能的技术&#xff0c;而无需等待对每个单独命令的响应。大多数Redis客户端都支持流水线操作。 – 官网…

【pytorch】常用代码

文章目录 条件与概率torch.tensor()torch.rand()torch.randn()torch.randint()torch.multinominal() 逻辑运算torch.argmax()torch.max()torch.sum()torch.tanh()torch.pow() 功能性操作 torch.nn.functionalF.normalize()F.elu()F.relu()F.softmax() 张量计算torch.zeros()tor…

基于JavaWeb实现的校园新闻发布系统

一、系统架构 前端&#xff1a;jsp | bootstrap | js | css 后端&#xff1a;springboot | jdbc 环境&#xff1a;jdk1.6 | mysql | maven 二、 代码及数据库 三、功能介绍 01. web端-首页 02. web端-新闻列表 03. web端-新闻明细 04. 管理端-登录页…

数据可视化引领智慧工业新时代

在智慧工业的大潮中&#xff0c;数据可视化崭露头角&#xff0c;以其直观、清晰的方式赋能工业生产&#xff0c;为智慧工业的高效运转提供了强有力的支持。下面我就以可视化从业者的角度&#xff0c;简单聊聊这个话题。 数据可视化首先在智慧工业的生产监控中大显身手。通过将…

Vue3前端实现一个本地消息队列(MQ), 让消息延迟消费或者做缓存

MQ功能实现的具体代码(TsMQ.ts)&#xff1a; import { v4 as uuidx } from uuid;import emitter from /utils/mitt// 消息类 class Message {// 过期时间&#xff0c;0表示马上就消费exp: number;// 消费标识&#xff0c;避免重复消费tag : string;// 消息体body : any;constr…

手机打开 第三方 “微信、快手、QQ、电话、信息” 等

前期回顾 Vue3 TS Element-Plus —— 项目系统中封装表格搜索表单 十分钟写五个UI不在是问题_vue3 封装table 配置表格-CSDN博客https://blog.csdn.net/m0_57904695/article/details/135538630?spm1001.2014.3001.5501 目录 &#x1f916; 下载App如下图所示&#xff1a;…

HUAWEI Programming Contest 2024(AtCoder Beginner Contest 342)(A,B,C,D,E,F,G)

看不懂的英文&#xff0c;题意很难理解&#xff0c;这场还是有点难度的。 C需要处理&#xff0c;D是不太明显的dijikstra&#xff0c;E是线段树优化dp&#xff0c;F是个不好想的线段树&#xff0c;主席树应该也能做。 我觉得讲的很好的宝藏up主->B站视频讲解。之后会比较忙…

10 款数据恢复软件功能和有效性对比(2024 年更新)

数据丢失可能是一种痛苦的经历&#xff0c;无论是由于意外删除、硬件故障还是软件损坏。值得庆幸的是&#xff0c;数字时代带来了强大的数据恢复解决方案。 随着我们进入 2024 年&#xff0c;市场上充斥着旨在有效检索丢失数据的先进软件。在本文中&#xff0c;我们将探讨 2024…

Java WEB面试系列-02

1. Servlet 中如何获取 Session 对象? 使用HttpServletRequest对象的getSession方法获取session,通过getCookies获取Cookie。 2. Servlet 中过滤器有什么作用? Servlet监听器对特定的事件进行监听,当产生这些事件的时候,会执行监听器的代码。可以对应用的加载、卸载,对…

代码随想录 Leetcode494. 目标和

题目&#xff1a; 代码(首刷看解析 2024年2月26日&#xff09; 思路&#xff1a;根据题意&#xff0c;设两个背包&#xff0c;packageA存放前面是""的数字之和&#xff0c;packageB存放前面是“-”的数字之和 则sum packageA packageB; target packageA - packag…

科普:哪几类人适合做人力RPO蓝海项目?

在当今竞争激烈的市场环境中&#xff0c;人力资源管理对于企业的重要性日益凸显。人办理RPO(招聘流程外包)作为一种新兴的服务模式&#xff0c;帮助企业优化招聘流程&#xff0c;提高招聘效率和质量。那么&#xff0c;哪几类人适合做人力RPO蓝海项目呢?本文将为大家详细总结一…

QT之项目经验(windows下的sqlite,c++开发)

目录 一、需要时间去磨练gui的调整和优化 1. 借鉴网上开源项目学习 2. gui的布局及调整是磨人的一件事情 3. gui的布局也是可以用组件复刻的 4. 耗时的设备树 二、多线程异步弹窗 三、定时任务动态变更设定 1.确定按钮触发 2.此处监听定时任务时间的改变 3.此处对改变做出具…