Shell scripts regularly clear log files larger than 1 GB

Source: Internet
Author: User

Shell scripts regularly clear log files larger than 1 GB

This article mainly introduces how to regularly clear log files larger than 1 GB using Shell scripts. This article provides the implementation code directly. For more information, see

A question about how to automatically delete a specified file larger than 1 GB.

The batch processing code is as follows:

The Code is as follows:

#! /Bin/bash

# When/var/log/syslog is greater than 1 GB

# Automatically back up and clear

# Note the usage of awk

If! [-F/var/log/syslog]

Then

Echo "file not exist! "

Exit 1

Fi

If ['LS-l/var/log/syslog | awk' {print $5} ''-gt $ (1024*1024)]

Then

Cat/var/log/syslog> ~ /Log/history # Back up logs

Echo >> ~ /Log/history # Add an empty line

Date> ~ /Log/history # record time

Echo "-------------------------------------"> ~ /Log/history

Echo>/var/log/syslog # Clear

Fi

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.