Avatar of jcob_l
jcob_l

asked on 

meaning

Can you please tell me the meaning of this

find /backup/logs/ -name daily_backup* -mtime +21 -exec rm -f {} ;


?

find /backup/logs/daily_backup* -mtime +5 -exec rm -f {} \;

?

find /backup/logs/daily_backup* -mtime +5 -delete;

?
Linux

Avatar of undefined
Last Comment
jcob_l
Avatar of farzanj
farzanj
Flag of Canada image

find /backup/logs/ -name daily_backup* -mtime +21 -exec rm -f {} ;

Find files in  /backup/logs/ directory with name daily_backup* (any characters or nothing after backup) that are more that 21 days old and remove them.
This command should have \; at the end or "{}" in quotations


find /backup/logs/daily_backup* -mtime +5 -exec rm -f {} \;
Find files in folders similar to /backup/logs/daily_backup* (anything after backup) that are more than 5 days old and remove them


find /backup/logs/daily_backup* -mtime +5 -delete;
Again find files more that 5 days old and delete them.

NOTE: mtime takes file's last modified time
* would mean 0 or more characters except for / that would mean next item in the path

For more examples, consult
http://www.cyberciti.biz/faq/howto-find-delete-empty-directories-files-in-unix-linux/
ASKER CERTIFIED SOLUTION
Avatar of Tintin
Tintin

Blurred text
THIS SOLUTION IS ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
Avatar of jcob_l
jcob_l

ASKER

yes
Linux
Linux

Linux is a UNIX-like open source operating system with hundreds of distinct distributions, including: Fedora, openSUSE, Ubuntu, Debian, Slackware, Gentoo, CentOS, and Arch Linux. Linux is generally associated with web and database servers, but has become popular in many niche industries and applications.

71K
Questions
--
Followers
--
Top Experts
Get a personalized solution from industry experts
Ask the experts
Read over 600 more reviews

TRUSTED BY

IBM logoIntel logoMicrosoft logoUbisoft logoSAP logo
Qualcomm logoCitrix Systems logoWorkday logoErnst & Young logo
High performer badgeUsers love us badge
LinkedIn logoFacebook logoX logoInstagram logoTikTok logoYouTube logo