How to use Linux to calculate the disk space occupied by timed files

How to use Linux to calculate the disk space occupied by timed files

Open the scheduled task editor. Cent uses vim to open it directly by default. If ubutun is installed with multiple editors, the first time you open it, you will be prompted to specify the editor.

insert image description here

(3) */1 * * * * sh /root/Shell/monitor.sh Add this line to the file. It means to execute the sh /root/Shell/monitor.sh command every one minute. For more specific timing formats, please check online. This is all you need for simple loop monitoring

insert image description here

(4) service crond start starts the scheduled task. On ubutun it is service cron start

insert image description here

(5) Check whether the crontab scheduled task has been started crontab -l

insert image description here

2. Shell monitoring disk

(1) du -BM /root/Shell/a.pdf | awk '{print $1}' to get the file size. The -BM output is M, if G output is required, use -BG.

(2) cachesize=$( du -BM /root/Shell/a.pdf | awk '{print $1}') uses the cachesize variable to receive the file size. Note that the received data is with units, such as 89M.

(3) cachesize=$(echo ${cachesize/M/}) Remove M to get a pure number 3. Complete code

If the size of the file a.pdf is greater than or equal to 90M

Summarize

The above is the operation method of Linux to implement the size of disk space occupied by timed files introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor 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:
  • Autotrash tool for Linux to automatically delete old junk files at a scheduled time
  • Use Linux shell script to implement FTP scheduled execution of batch download of specified files
  • Script for regularly deleting files older than a certain day in Windows and Linux
  • Linux VPS backup tutorial database/website file automatic scheduled backup
  • How to expand the root directory disk space in Linux system
  • Detailed explanation of Linux disk formatting commands
  • Detailed explanation of Linux virtual machine root partition disk expansion space record
  • Linux view disk space size command
  • How to use du to view the size of disk space occupied by a file or directory in Linux
  • How to view Raid disk array information in Linux
  • How to expand the disk capacity of a Linux server (picture)
  • How to use GPT partitioning on Linux disks larger than 2T

<<:  Use of JavaScript sleep function

>>:  Detailed explanation of the problem of mixed use of limit and sum functions in MySQL

Recommend

mysql solves the problem of finding records where two or more fields are NULL

Core code /*-------------------------------- Find...

Solution to nginx-ingress-controller log persistence solution

Recently I saw an article on a public account tha...

Several ways to remove the dotted box that appears when clicking a link

Here are a few ways to remove it: Add the link dir...

MySQL process control IF(), IFNULL(), NULLIF(), ISNULL() functions

In MySQL, you can use IF(), IFNULL(), NULLIF(), a...

Implementation of Vue large file upload and breakpoint resumable upload

Table of contents 2 solutions for file upload Bas...

Index in MySQL

Preface Let's get straight to the point. The ...

Solution to "Specialized key was too long" in MySQL

Table of contents Solution 1 Solution 2 When crea...

Linux View File System Type Example Method

How to check the file system type of a partition ...

AsyncHooks asynchronous life cycle in Node8

Async Hooks is a new feature of Node8. It provide...

Detailed explanation of Javascript basics loop

Table of contents cycle for for-in for-of while d...

Example code showing common graphic effects in CSS styles

Let me briefly describe some common basic graphic...

Implementation steps of Mysql merge results and horizontal splicing fields

Preface Recently, I was working on a report funct...

Summary of some efficient magic operators in JS

JavaScript now releases a new version every year,...

Docker installation rocketMQ tutorial (most detailed)

RocketMQ is a distributed, queue-based messaging ...

Use tomcat to set shared lib to share the same jar

As more and more projects are deployed, more and ...