When backing up files in Centos7, add the backup date to the backup file

When backing up files in Centos7, add the backup date to the backup file

Linux uses files as the basis to manage the devices, interfaces, files, startup and application software in the system. Because in this process, the .conf files, script software, shell, etc. of the application system are required to be backed up before editing. Generally, when I operate important files, I always back them up first, such as:

01. Create a new file

#echo "test copy.." > /home/hdnnadmin/test-copy 

02. Spare parts test-copy file

#cp /home/hdnnadmin/test-copy /home/hdnnadmin/test-copy-bak

Or #cp /home/hdnnadmin/test-copy{,-bak}

View the backup results

03. How to add backup time

#cp /home/hdnnadmin/test-copy{,_back_`date '+%Y%m%d%H%M'`}

View backup results

At this time, it is displayed where the spare part date is added in the backup file

Summarize

The above is what I introduced to you about adding spare parts date to backup files when backing up files in Centos7. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • CentOS7 enables MySQL8 master-slave backup and daily scheduled full backup (recommended)
  • Rsync+crontab regular synchronization backup under centos7
  • How to backup and restore Redis data in Centos7

<<:  JS implements array filtering from simple to multi-condition filtering

>>:  Detailed explanation of how to view the current number of MySQL connections

Recommend

How to use VirtualBox to simulate a Linux cluster

1. Set up HOST on the host Macbook The previous d...

How to install JDK8 on Windows

1. Download: http://www.oracle.com/technetwork/ja...

How to develop uniapp using vscode

Because I have always used vscode to develop fron...

HTML table tag tutorial (46): table footer tag

The <tfoot> tag is used to define the style...

Pure CSS3 code to implement a running clock

Operation effectCode Implementation html <div ...

JavaScript implements select all and unselect all operations

This article shares the specific code for JavaScr...

Solution to 1045 error in mysql database

How to solve the problem of 1045 when the local d...

MySQL server 5.7.20 installation and configuration method graphic tutorial

This article records the installation and configu...

The whole process of developing a Google plug-in with vue+element

Simple function: Click the plug-in icon in the up...

CSS implements the web component function of sliding the message panel

Hello everyone, I wonder if you have the same con...

Centering the Form in HTML

I once encountered an assignment where I was give...

ElementUI implements cascading selector

This article example shares the specific code of ...

The ultimate solution for writing bash scripts with nodejs

Table of contents Preface zx library $`command` c...