Sponsored Content
Operating Systems Linux compare files in the system with last modified date Post 302141542 by porter on Friday 19th of October 2007 03:28:31 PM
Old 10-19-2007
man test

Code:
     file1 -nt file2
                   True if file1 exists and is newer than file2.

     file1 -ot file2
                   True if file1 exists and is older than file2.

So if you have a file with your cutoff timestamp you can compare others such:

Code:
if test $candidate-file -ot $cutoff-file
then
     echo $candidate-file
fi

 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Create a list of files that were modified after a given date.

Hello Mates! I'm kinda new to unix and need to a solve a problem. Input: date Situation: With the given date I need to find a list of all such files starting from a given path that were modified after the given date. I experimented with the "find" with "-newer" but did not quite get it... (4 Replies)
Discussion started by: rkka
4 Replies

2. Shell Programming and Scripting

Compare date from db2 table to yesterday's Unix system date

I am currently running the following Korn shell script which works fine: #!/usr/bin/ksh count=`db2 -x "select count(*) from schema.tablename"` echo "count" I would like to add a "where" clause to the 2nd line that would allow me to get a record count of all the records from schema.tablename... (9 Replies)
Discussion started by: sasaliasim
9 Replies

3. UNIX for Dummies Questions & Answers

Find last modified date for many files

Hello all - I've looked and have not been able to find a "find" command that will list the last modified date of files within a specific directory and its subdirectories. If anyone knows of such a command it would be very much appreciated! If possible, I would like to sort this output and have... (5 Replies)
Discussion started by: MichaelH3947
5 Replies

4. UNIX for Dummies Questions & Answers

Number of files in a directory modified on a date

Hi How to list all the files in a directory that are modified on a particular date? Also need to know the count,i.e number of files modified on a particular date. Thanks Ashok (1 Reply)
Discussion started by: ashok.k
1 Replies

5. UNIX for Dummies Questions & Answers

mv folders/files without changing modified date?

Hi all, I'm using Red Hat Linux and want to move some folders and files around but not change the modified date. Is this possible? I know cp has a -p flag which seems to do what I want, but this is a large volume of data so copying and deleting would not be feasible. (13 Replies)
Discussion started by: Annorax
13 Replies

6. Shell Programming and Scripting

Adding days to system date then compare to a date

Hi! I am trying to read a file and every line has a specific date as one of its fields. I want to take that date and compare it to the date today plus 6 days. while read line do date=substr($line, $datepos, 8) #date is expected to be YYYYMMDD if ; then ...proceed commands ... (1 Reply)
Discussion started by: kokoro
1 Replies

7. Shell Programming and Scripting

How to get the files which has modified date as yesterday and before?

Hi All, Can you please help me to get only the files which has the modified date as yesterday and before? Thanks in advance! Regards, Velava.S (4 Replies)
Discussion started by: velava
4 Replies

8. Shell Programming and Scripting

Compare the system date with date from a text file

I get the date that's inside a text file and assigned it to a variable. When I grep the date from the file, I get this, Not After : Jul 28 14:09:57 2017 GMT So I only crop out the date, with this command echo $dateFile | cut -d ':' -f 2,4The result would be Jul 28 14:57 2017 GMT How do I... (3 Replies)
Discussion started by: Loc
3 Replies

9. UNIX for Beginners Questions & Answers

Compare date in .txt with system date and remove if it's lesser than system date

Can someone help me with the code wherein there is a file f1.txt with different column and 34 column have expiry date and I need to get that and compare with system date and if expiry date is <system date remove those rows and other rows should be moved to new file f2.txt . I don't want to delete... (2 Replies)
Discussion started by: Stuti
2 Replies

10. Answers to Frequently Asked Questions

Compare date in .txt with system date and remove if it's lesser than system date

I m working on shell scripting and I m stuck where in my .txt file there is column as expiry date and I need to compare that date with system date and need to remove all the rows where expiry date is less than system date and create a new .txt with update. (1 Reply)
Discussion started by: Stuti
1 Replies
config(8)						      System Manager's Manual							 config(8)

Name
       config - build system configuration files

Syntax
       /etc/config [-p] [-s] config_file

Description
       The  command  builds a set of system configuration files from a short file which describes the sort of system that is being configured.	It
       also takes as input a file which tells what files are needed to generate a system.  This can be augmented by a configuration  specific  set
       of files that give alternate files for a specific machine.  (See the Files section.)  If the -p option is supplied, will configure a system
       for profiling.  You must have sources to use the -p option.  Use the -s option when building a kernel from sources.

       The command should be run from the subdirectory of the system source (usually ).  The command assumes that there  is  already  a  directory
       created	and it places all its output files in there.  The output of consists of a number files: contains a description of what I/O devices
       are attached to the system, and is a file used by in building the system; a set of header files which contain the number of various devices
       that  will  be  compiled into the system; and a set of swap configuration files which contain definitions for the disk areas to be used for
       swapping, the root file system, argument processing, and system dumps.

       After running it is necessary to run in the directory where the new makefile was created.  The command reminds you of  this  when  it  com-
       pletes.

       If  you receive other error messages from fix the errors in your configuration file and try again.  If compile a system that has configura-
       tion errors, the system will fail.

Restrictions
       The line numbers reported in error messages are usually off by one.

Files
       Generic makefile

       List of common files that the system is built from

       List of machine specific files

       Name to major device mapping file

       List of known file systems

See Also
       The Syntax portion of each device in Section 4 of the ULTRIX Reference Pages
       ``Building 4.2BSD UNIX System with Config,'' ULTRIX Supplementary Documents, Volume 3: System Manager

								       RISC								 config(8)
All times are GMT -4. The time now is 05:45 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy