Sponsored Content
Top Forums Shell Programming and Scripting how to delete the older files other than the recently added 5 files Post 302600891 by shaal89 on Wednesday 22nd of February 2012 10:02:11 AM
Old 02-22-2012
ya.. it will list the files in date order.. but i hav to delete the files other than recently added 5 files.. (There should be only 5 files which are been recently added.. it should delete all the other files..)
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

delete files older than 7 days

can anyone tell me how I would write a script in ksh on AIX that will delete files in a directory older than 7 days? (1 Reply)
Discussion started by: lesstjm
1 Replies

2. UNIX for Dummies Questions & Answers

How can I delete files older than 7 days?

I will like to write a script that delete all files that are older than 7 days in a directory and it's subdirectories. Can any one help me out witht the magic command or script? Thanks in advance, Odogboly98:confused: (3 Replies)
Discussion started by: odogbolu98
3 Replies

3. Shell Programming and Scripting

how to delete the files which are the 30 min older...?

Hi all, i have a simple question that i want to find out the 30 minutes older files and delete those files from the particular location(Folder) Generally for this purpose used to retreive the files with "atime" command For example: find and delete the 2 days older log files use this below... (2 Replies)
Discussion started by: psiva_arul
2 Replies

4. UNIX for Dummies Questions & Answers

Delete files older than 30 days

This is driving me crazy. How can I delete files in a specifc directory that are over 30 days old? Thanks in advance. (3 Replies)
Discussion started by: tlphillips
3 Replies

5. Solaris

Delete files older than 30 days

Hi all, I want to delete log files with extension .log which are older than 30 days. How to delete those files? Operating system -- Sun solaris 10 Your input is highly appreciated. Thanks in advance. Regards, Williams (2 Replies)
Discussion started by: William1482
2 Replies

6. Shell Programming and Scripting

Delete files older than today

is it -mtime +1 as i need all files older than today to be deleted (6 Replies)
Discussion started by: dinjo_jo
6 Replies

7. Shell Programming and Scripting

To delete files older than 24 hrs

I have to retain only 1 day files in my system an I have to delete all the other files which are older than 24 hrs. Please let me know the option I have to give in the find -mtime command. (3 Replies)
Discussion started by: rajesh8s
3 Replies

8. UNIX for Dummies Questions & Answers

How to archive old files from the recently added 10 files?

Hi there, I am very new to unix and having trouble with a fairly simple statement: cd /user ls -t -c1 | sed -ne '11,$p' | mv xargs archive/ What I want the code to do is sort all files in a directory by timestamp, select all of the files after the 10th file, and then move those files... (3 Replies)
Discussion started by: DSIReady
3 Replies

9. UNIX for Dummies Questions & Answers

How to delete all the files older than a date?

Hi, I need a command for deleting all the compress files *.Z that are older than the current date - 5 days. Basically I have a directory where daily I meet some back up files and I want to remove automatically the ones 5 days (or more) older than the current date. How can I write a 'rm' command... (1 Reply)
Discussion started by: Francy
1 Replies

10. Shell Programming and Scripting

How to copy the two most recently added files to another directory - HP-UX?

Hello, I am attempting to find and copy the two most recently added files to a specific directory, that fit a specific format. I was able to find the command to list the two most recently added files in directory: ls -1t | head -n 2 The command lists the two files names in a vertical list,... (11 Replies)
Discussion started by: mattkoz
11 Replies
CVSDELTA(1)							  cvsdelta 1.7.0						       CVSDELTA(1)

NAME
cvsdelta - Manage and summarize the differences between a CVS project and local files. SYNOPSIS
cvsdelta [options] [file ...] DESCRIPTION
Manages and summarizes the differences between a CVS project and local files, showing the changes of the files themselves and of their con- tents. Added, changed, and deleted files are denoted with `+', `*', and `-' respectively. The number of lines are displayed. OPTIONS
-a, --adds Display the files that were added. This is done by default. -A, --no-adds Do not display the files that were added. The default is to show the added files. --banner, --no-banner Whether to show the banner, i.e., the header and footer of the output table. By default, the banner is displayed. -c, --changes Display the files that were changed. This is done by default. -C, --no-changes, --nodiff Do not compare files that exist locally and in CVS. This executes significantly faster, and is useful for when one only wants to add and remove files, without getting the summary of the changes. It is also helpful for dealing with situations where CVS seems to hang after producing diff output, although changing the compression level can help with this. The default is to show the changed files. -d, --deletes Display the files that were deleted. This is done by default. -D, --no-deletes Do not display the files that were deleted. The default is to show the files that were deleted. -e, --execute Execute the associated CVS commands ("add" and "remove") for the added and deleted files. -f DATE, --from-date DATE Compare the files to their version as of the given date, rather than their current version in CVS. The date is expected to be in CVS format, for example, 2002/12/31. -F REVISION, --from-revision REVISION Compare the files to their version as of the given revision, rather than their current version in CVS. -h, --help Display a help message. -i, --confirm Interactively confirm deleted files with the user before removing them from CVS. The default is simply to execute the remove command for relevant files. This option is valid only with the --execute option. --progress, --no-progress Whether to show the progress meter as the program is working with CVS. By default, this is not shown. -q, --quiet Run with minimum output. In quiet mode, the progress meter is not displayed. -s, --skip-unknown-directories Skip directories that are not in CVS. The default behavior is to process all subdirectories. -t DATE, --to-date DATE Compare the files to their version as of the given date, rather than to the local files. The date is expected to be in CVS format, for example, 2001/08/21. This option is valid only with the --from-date or --from-revision options. -T REVISION, --to-revision REVISION Compare the files to their version as of the given revision, rather than to the local files. This is valid only with the --from-date or --from-revision options. -v, --version Display the version and exit. -V, --verbose Run with maximum output, which is written to standard error. -z [LEVEL], ---compression [LEVEL] Set the compression to the given level for net traffic. This can be useful if the CVS server seems to hang. The default level is 3; 0 and 9 work well. ARGUMENTS
Arguments may be either files or directories. File If a file is provided, it is compared against the equivalent in CVS, if any. The .cvsignore files are applied, so that although the file was explicitly provided, it may be ignored. Directory Directories are processed recursively for files that are not filtered out by .cvsignore files. EXAMPLES
% cvsdelta Lists the changed files. % cvsdelta --execute Lists the changed files, and executes the associated add and remove commands. % cvsdelta --compression 9 --execute --confirm --no-changes Run with the maximum compression level. Add and remove the appropriate files, but get confirmation from the user before removing any files. Do not compare files that exist both locally and in CVS. ENVIRONMENT
$HOME/.cvsdeltarc, .../project/.cvsdeltarc Resource files containing name/value pairs, separated by either ':' or '='. The valid fields of a .cvsdeltarc file are as follows, with their default values: quiet: false verbose: false execute: false confirm: false diff: true compression: 3 adds: true changes: true deletes: true skip-unknown-directories: false banner: true "yes" and "on" are synonymnous with "true". "no" and "off" signify "false". The values in the project .cvsdeltarc file will override those in the user's .cvsdeltarc file. The project .cvsdeltarc is assumed to be at the topmost directory in the local file hierarchy. CVSDELTAOPTS A string of whitespace-delimited options, the same as listed above. These values override those of the resource files. NOTES
If a file exists in the CVS project but not locally, it is assumed that the file has been deleted, not that it may have been recently added by another user. The --confirm option can be used to deal with this situation. AUTHOR
Jeff Pace <jpace@incava.org> COPYRIGHT
Copyright (c) 2002, Jeff Pace. All Rights Reserved. This module is free software. It may be used, redistributed and/or modified under the terms of the Lesser GNU Public License. See http://www.gnu.org/licenses/lgpl.html for more information. cvsdelta 1.7.0 2004-04-08 CVSDELTA(1)
All times are GMT -4. The time now is 11:03 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy