Sponsored Content
Full Discussion: Check file time stamp
Top Forums Shell Programming and Scripting Check file time stamp Post 302664419 by qamar.alam on Friday 29th of June 2012 05:30:39 PM
Old 06-29-2012
find command is working fine for me. But I need to redirect destination path also in my tmp_file.

Code:
exec < out_interfaces.cfg
while read source_path $destination_path
do
find $source_path -name "*" -amin +2 >> tmp_file
done

out_interfaces.sfg file has below data

Code:
/usr/local/scripts/tmp1 /usr/local/scripts/remote1
/usr/local/scripts/tmp2 /usr/local/scripts/remote2
/usr/local/scripts/tmp2 /usr/local/scripts/remote3
/usr/local/scripts/tmp3 /usr/local/scripts/remote3

and when I execute above script it shows below data in my tmp_file.

Code:
/usr/local/scripts/tmp1/test1
/usr/local/scripts/tmp2/tmp21
/usr/local/scripts/tmp2/tmp22
/usr/local/scripts/tmp2/tmp23
/usr/local/scripts/tmp2/tmp21
/usr/local/scripts/tmp2/tmp22
/usr/local/scripts/tmp2/tmp23
/usr/local/scripts/tmp3/tmp31
/usr/local/scripts/tmp3/tmp32
/usr/local/scripts/tmp3/tmp33

and I want below output in my tmp_file

Code:
/usr/local/scripts/tmp1/test1 /usr/local/scripts/remote1
/usr/local/scripts/tmp2/tmp21 /usr/local/scripts/remote2
/usr/local/scripts/tmp2/tmp22 /usr/local/scripts/remote2
/usr/local/scripts/tmp2/tmp23 /usr/local/scripts/remote2
/usr/local/scripts/tmp2/tmp21 /usr/local/scripts/remote3
/usr/local/scripts/tmp2/tmp22 /usr/local/scripts/remote3
/usr/local/scripts/tmp2/tmp23 /usr/local/scripts/remote3
/usr/local/scripts/tmp3/tmp31 /usr/local/scripts/remote3
/usr/local/scripts/tmp3/tmp32 /usr/local/scripts/remote3
/usr/local/scripts/tmp3/tmp33 /usr/local/scripts/remote3

---------- Post updated at 05:30 PM ---------- Previous update was at 11:58 AM ----------

Thank you everyone. My problem has been solved. I used below code.

Code:
 exec < out_interfaces.cfg
 while read source_path destination_path
 do
 {
 find $source_path -name "*" -amin +2 -exec echo $destination_path {} \;
 
 } >> tmp_file

 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

File date and time stamp

I have to capture the creation date and time stamp for a file. The ls command doesn't list all the required information. I need year, month, day, hour, minute and second. Any ideas... (1 Reply)
Discussion started by: Xenon
1 Replies

2. UNIX for Dummies Questions & Answers

time stamp of file create

Hi, Sounds a simple request but I also need (would like) to gather the seconds too. I'm not even sure if this is held. I would think it is, somewhere??!!?! I belive that stat would/could work but I don't do C (we'll not yet). Is there any comamnd line util I can use? SunOS. Cheers... (7 Replies)
Discussion started by: nhatch
7 Replies

3. Shell Programming and Scripting

how do i put a time stamp in a file name

i want to copy a filea.dat to a file name in the format of filea_yyyymmdd_hhmi.dat using something like DTSTAMP=$(date "+%Y%m%d"), which puts it in format filea_yyyymmdd.dat (5 Replies)
Discussion started by: jhamm
5 Replies

4. Shell Programming and Scripting

change the time stamp of file

can we change the timestamp of a file to old date. -rwxrwxrwx 1 root other 330 Jul 1 16:03 abc.txt it shows creation time is 16.03 can i change it to previous time :) (2 Replies)
Discussion started by: anish19
2 Replies

5. Shell Programming and Scripting

Change time stamp of a file

Hi, As i know , we can change the time stamp of a file by touch command, i did change in a file and it is looking as given # ls -l abcd -rw-r--r-- 1 batsoqa sicusers 0 Feb 17 2010 abcd actually i want to see the output like this -rw-r--r-- 1 batsoqa sicusers ... (3 Replies)
Discussion started by: apskaushik
3 Replies

6. Shell Programming and Scripting

file time stamp

Hi All, I am facing small problem. i want to print file time stamp on which date file has placed in the server. i have given some code but its not giving the year. any help appreciated. regards rajesh. (4 Replies)
Discussion started by: rajesh_pola
4 Replies

7. Shell Programming and Scripting

awk - check time stamp between range or not

I want to check given time stamp is between the given time stamp or not. I am using AIX. YYYYMMDDHHMMSS abc.csv START TIME, END TIME 20130209018000,20130509022000 20120209018000,20130509022000 20120209018000,20130509022000 Script will check given time stamp is between above two range or... (2 Replies)
Discussion started by: vegasluxor
2 Replies

8. Shell Programming and Scripting

Check time stamp formate in file

I have to check whether last line of the file has time stamp or not. File.txt cong = 0 This formats a date and time into the given strftime() format = 09 Dates can be passed to Smarty as unix timestamps = 56789 mysql timestamps or any string made up =98 Since Smarty-2.6.10 numeric... (4 Replies)
Discussion started by: Roozo
4 Replies

9. Shell Programming and Scripting

To check time stamp in log file and calculate.

Hi Friends, I have the following logfile. i want to make a script for calculate time by time2 - time1 1600266278|random|1|2014-09-19 02:08:56.024|2014-09-19 02:08:59.398|A|B|ROOM|Num0208559970111101788|1|dog|dos 1600266200|random|4|2014-09-19 02:08:06.572|2014-09-19... (2 Replies)
Discussion started by: ooilinlove
2 Replies

10. Shell Programming and Scripting

Capturing time stamp in file name

I have a file that is created via a perl script where the file is named like so: 01-07-2016_10:17:08. I am running a shell script that needs to take this file and print it. I can capture the date portion fine, but I am unsure how to capture the time stamp, since there will be a difference from what... (1 Reply)
Discussion started by: ldorsey
1 Replies
DH_USRLOCAL(1)							     Debhelper							    DH_USRLOCAL(1)

NAME
dh_usrlocal - migrate usr/local directories to maintainer scripts SYNOPSIS
dh_usrlocal [debhelperoptions] [-n] DESCRIPTION
dh_usrlocal is a debhelper program that can be used for building packages that will provide a subdirectory in /usr/local when installed. It finds subdirectories of usr/local in the package build directory, and removes them, replacing them with maintainer script snippets (unless -n is used) to create the directories at install time, and remove them when the package is removed, in a manner compliant with Debian policy. These snippets are inserted into the maintainer scripts by dh_installdeb. See dh_installdeb(1) for an explanation of debhelper maintainer script snippets. When the Rules-Requires-Root field is not (effectively) binary-targets, the directories in /usr/local will have ownership root:staff and the mode will be 02775. These values have been chosen to comply with the recommendations of the Debian policy for directories in /usr/local. When Rules-Requires-Root has an effective value of binary-targets, the owners, groups and permissions will be preserved with one exception. If the directory is owned by root:root, then ownership will be reset to root:staff and mode will be reset to 02775. This is useful, since that is the group and mode policy recommends for directories in /usr/local. OPTIONS
-n, --no-scripts Do not modify postinst/prerm scripts. NOTES
Note that this command is not idempotent. dh_prep(1) should be called between invocations of this command. Otherwise, it may cause multiple instances of the same text to be added to maintainer scripts. CONFORMS TO
Debian policy, version 2.2 SEE ALSO
debhelper(7) This program is a part of debhelper. AUTHOR
Andrew Stribblehill <ads@debian.org> 11.1.6ubuntu2 2018-05-10 DH_USRLOCAL(1)
All times are GMT -4. The time now is 05:52 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy