Linux tmpwatch command - delete files that have not been accessed for a specified period of time

The Linux tmpwatch command is used to delete files that have not been accessed for a specified period of time.

Linux tmpwatch command Function Description

Use the tmpwatch command to recursively search from a specified directory and delete files that have not been accessed for a specified period of time. This command is typically used to purge directories that are used to temporarily house files (such as /tmp).

tmpwatch ignores symbolic links, it does not switch file systems, and it only removes empty directories and regular files.

Linux tmpwatch Command Syntax

tmpwatch [options] [timeout] [directory]

The meaning of each option in the command is shown in the table.

Option Description
-a Delete files of any type
-f Forced deletion of files or directories
-q The command execution process is not displayed
-v Displays the command execution process in detail
-t Only for testing, not really deleting files or directories
-m Based on the time when the file was modified (mtime)
-c Change time by file (ctime)
-M By folder modified time (mtime)
-l Do not remove symbolic links
-U <User> Exclude files for the specified user
-x <Path> Exclude a specified path
-X <String> Exclude paths that match a string
-d Do not delete an empty directory

Linux tmpwatch command Examples

Delete files in the /tmp folder that have not been accessed in 3 days

[root@rhel ~]# tmpwatch -afv 3 /tmp
Like(1)

Related

Linux Login Logout Command
Linux login commandLinux logout commandLinux nologin commandLinux exit commandLinux sulogin commandLinux rlogin commandLinux poweroff commandLinux ctrlaltdel CommandLinux shutdown commandLinux halt commandLinux reboot commandLinux init commandLinux runlevel commandLinux telinit command
Linux File Management Command
Linux cat commandLinux tac commandLinux nl commandLinux more commandLinux less commandLinux head commandLinux tail commandLinux rev commandLinux fold commandLinux fmt commandLinux expand commandLinux pr commandLinux sort commandLinux uniq commandLinux cut commandLinux comm commandLinux diff commandLinux join commandLinux diff3 commandLinux cmp commandLinux colrm commandLinux paste commandLinux mkdir commandLinux tr commandLinux split commandLinux csplit commandLinux tee commandLinux unexpand commandLinux patch commandLinux awk commandLinux sed commandLinux od commandLinux pwd commandLinux cd commandLinux ls commandLinux dir commandLinux dirs commandLinux touch commandLinux rmdir commandLinux cp commandLinux mv commandLinux rm commandLinux install commandLinux tmpwatch commandLinux file commandLinux du commandLinux wc commandLinux tree commandLinux cksum commandLinux md5sum commandLinux sum commandLinux dirname commandLinux mkfifo Command
Cron Expressions
Cron Expression to Run Every Day at 12 PMUnderstanding Vue Cron ExpressionsUnderstanding JS Cron ExpressionsA Comprehensive Guide to Cron Expressions for Scheduled TasksUnderstanding Linux Cron ExpressionsUnderstanding Quartz Cron ExpressionsCron ExpressionCron Time ExpressionCron Expression ParsingCron Expression: Executing a Task Every SecondCron Expression for Every Minute ExecutionCron Expression to Execute Every 10 MinutesCron Expression: Executing Every HourCron Expression to Execute Once a YearCron Expression: How to Schedule a Task to Run Daily at Midnight?