Increment time stamps.


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Increment time stamps.
# 8  
Old 02-12-2013
Chubler XL

I have more than 1000 files to change the time stamp in order increment,,, Please can you help me.. to solve the problem.
Thanks in advance.
# 9  
Old 02-12-2013
Try this:

Code:
OLDEST=$(ls -rt1 *.segd | head -1)
SECS=$(date -r $OLDEST +%s)

ls -rt1 *.segd | while read file
do
    let SECS=SECS+60
    touch -t $(date -d @$SECS +%Y%m%d%H%M) "$file"
done

This User Gave Thanks to Chubler_XL For This Post:
# 10  
Old 02-12-2013
Image Chubler_XL

It is working fine,, Thanks a lot..

I notice that your scrip take the date and time for the fist file.

How I can assign a specific date entered manually... for the first file ,, can be a variable.. For example ..

And then your scrip will take this date and make the process...For example .. I will like to start on Feb 08 06:00 and then next file shoulbe Feb 08 06:01.... ...

The main point in this case is that I need to change the time and date stamp, using a old date an time.

Your help is really appreciated.

---------- Post updated at 06:17 AM ---------- Previous update was at 06:00 AM ----------

Image Chubler_XL

I got it like this:

Code:
#!/bin/bash

touch -t 1302080500.00 *.*
                      
OLDEST=$(ls -t1 *.segd | head -1)
SECS=$(date -r $OLDEST +%s)

ls -t1 *.segd | while read file
do
    let SECS=SECS+60
    touch -t $(date -d @$SECS +%Y%m%d%H%M) "$file"
done

Thanks for your help

---------- Post updated at 06:48 AM ---------- Previous update was at 06:17 AM ----------

Image Chubler_XL

I fix it as following

Code:
#!/bin/bash

tape=$1
p1=$2 # Motnh
p2=$3 # Day
p3=$4 # Hour
p4=$5 # Min

cd /mnt/data1/SEGD/tape"$tape"

touch -t 13"$p1""$p2""$p3""$p4".00 *.*
                      
OLDEST=$(ls -t1 *.segd | head -1)
SECS=$(date -r $OLDEST +%s)

ls -t1 *.segd | while read file
do
    let SECS=SECS+60
    touch -t $(date -d @$SECS +%Y%m%d%H%M) "$file"
done

usage: fix_timestamps 2984 02 08 00 00

Thanks
# 11  
Old 02-12-2013
Yes your solution looks fine, you can improve performance by just using the passed param to set the SECS var like this:

Code:
tape=$1

if [ $# -eg 2 ]
then
    SECS=$(date -d "$2" +%s)
else
    SECS=$(date -d "$2/$3 ${4:-00}:${5:-00}" +%s)
fi

cd /mnt/data1/SEGD/tape"$tape"

for file in *.segd
do
    let SECS=SECS+60
    touch -t $(date -d @$SECS +%Y%m%d%H%M) "$file"
done

Usage:

fix_timestamps tape datestr
fix_timestamps tape month day [hour [min]]>

eg:
Code:
fix_timestamps 7593 02 08
fix_timestamps 7590 02 08 14 51
fix_timestamps 7592 "last tuesday"
fix_timestamps 7592 "today -3 days"
fix_timestamps 7592 "Feb 16 2008"


Last edited by Chubler_XL; 02-12-2013 at 02:06 PM.. Reason: Usage examples
This User Gave Thanks to Chubler_XL For This Post:
# 12  
Old 02-13-2013
Appreciate your support.. Thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Windows & DOS: Issues & Discussions

Cygwin_openssh time stamps

I've installed cygwin_openssh on Windows 2012 R2 and it's working great. My issue is when a file is uploaded say from a different timezone, when it is uploaded, it doesnt pick up the sftp servers time.. Is there a way to fix that? i.e. When someone in PST uploads a file to this server in EST,... (0 Replies)
Discussion started by: MikeAdkins
0 Replies

2. Shell Programming and Scripting

Collecting logs between two time stamps

Hi, please help me to collect the entire log files between two time stamp. for example, I am looking script to collect the entire log between "2015-03-27 15:59" to "2015-03-27 16:15" in the below sample log file. OS : RHEL 6.3 Date/Time : 24 hours format, the time is printing each log... (12 Replies)
Discussion started by: jerryknj
12 Replies

3. Shell Programming and Scripting

How to get the Logs between two Time Stamps?

Hi, I have been working on the error Log script, where errors are pulled from server. I need to pull the data of the error logs between two dates & time, for example : 22/12/2014 20:00:00 22/12/2014 22:00:00 Whatever error have came during this duration. Now the question is the record... (6 Replies)
Discussion started by: amitgpta90
6 Replies

4. Shell Programming and Scripting

date time stamps in bash

I'm looking for a way to have the "date" command output the date in a specific format. I'm not familiar with the different ways to use the date command at all. i read up on it, but i dont get how to manipulate it. i know that i can get the date format to give me a format like: 2012-10-13... (6 Replies)
Discussion started by: SkySmart
6 Replies

5. Shell Programming and Scripting

Time difference between two time stamps

Hi Friends, I have 2 varaibles which contain START=`date '+ %m/%d/%y %H:%M:%S'` END=`date '+ %m/%d/%y %H:%M:%S'` i want the time difference between the two variables in Seconds. Plz help. (2 Replies)
Discussion started by: i150371485
2 Replies

6. Shell Programming and Scripting

comparing time stamps

Hello All, I'm generating timestamps (file creation timestamps) for all the files in a directory. I need to compare all the timestamps. for example if i have 4 files and their timestamps are 20091125114556, 20091125114556,20091125114556,20091125114556 respectively. I need to differentiate... (9 Replies)
Discussion started by: RSC1985
9 Replies

7. UNIX for Dummies Questions & Answers

comparing time stamps

Hello All, I'm generating timestamps (file creation timestamps) for all the files in a directory. I need to compare all the timestamps. for example if i have 4 files and their timestamps are 20091125114556, 20091125114556,20091125114556,20091125114556 respectively. I need to differentiate... (1 Reply)
Discussion started by: RSC1985
1 Replies

8. UNIX for Dummies Questions & Answers

Problem with subtracting time stamps in excel..

Hi All, I need an unix script/command to delete the milliseconds from the time stamps so that it becomes compatible with Excel sheet while displaying finally. I have the following data in 2 columns which was obtained with some unix script(awk based) on some log files. Finally i want to... (1 Reply)
Discussion started by: ks_reddy
1 Replies

9. UNIX for Dummies Questions & Answers

List files with date and time stamps only

Hi there, I'm using terminal on mac and using the ls -l command to list all the files in a directory. However, I only want to display the date and time stamp of each file rather than permissions, owner, group etc... Is this possible? Many thanks in advance Dave (2 Replies)
Discussion started by: davewg
2 Replies

10. Shell Programming and Scripting

Copying Files in the same order along with time stamps

Hi , I am New to this group and would like to know if someone can help me on this issue : We need to copy some files from a particular directory to another directory in the same order and time stamps .How can this be achieved . For Ex : ./ABC/disk101/XYZ has 1000 files with varying... (2 Replies)
Discussion started by: shyam.appalla
2 Replies
Login or Register to Ask a Question