how to get the timestamp using touch command


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers how to get the timestamp using touch command
# 1  
Old 12-08-2008
how to get the timestamp using touch command

Can any one provide answer for the below 3 requirements,

1.
file.txt
grep "name" file.txt > file1.txt
rm -f file.txt
mv file1.txt file.txt

as per abov,
a pattern grepped in file.txt and the content moved to again file.txt
My need is i want the timestamp of file.txt before chaning and aftr chaning should be same.. so how can i get the timestamp of file.txt before and aftr using touch command?


2.i want to check the log of prevous day for a pattern
can any one please how to get the prev day?

IMPORTANT thin is, the pattern will b present only mon - fri but not sat and sunday... so on monday i want to chk for friday (previous day) not sunday...also if month as 30 days or 31 days it should be calcualted accordingly.

ex: `date +%d` gives 01...20...

structure of log file:
test.01
test.02
;;
test.30

3. file.txt
a,b,c
d,e

from the file.txt i want o/p as
a
b
c
d
e
how this can b acheived usin cut cmd...

can any one please answer the abv3 que????
# 2  
Old 12-08-2008
1)
Code:
var=`ls -l file.txt|awk '{print $7$8"08"}'`
var=`echo $var|sed 's/://g'`
mon=`ls -l file.txt|awk '{print $6}'`
mon=`awk -v var=$mon '
BEGIN{
split("JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC", month, " ")
for (i=1; i<=12; i++) mdigit[month[i]]=i
m=toupper(substr(var,1,3))
dat=sprintf("%02d",mdigit[m])
print dat
}'`
time_stamp=`echo $mon$var`

grep "name" file.txt > file1.txt
rm -f file.txt
mv file1.txt file.txt

touch $time_stamp file.txt

2)which OS are you using?? if you have GNU date then you can find option to get yesterday's date in date man page.

3)
Code:
sed 's/,/\
/g' file.txt

# 3  
Old 12-08-2008
Can any one please reply??????

Thnx tutor for answers...
i forgot to mention about onething of the 1st que...
1..
file.<day value> ------ i.e file.08(as per yesterday)
grep "name" file.(day value) > file1.(day value)
rm -f file.(day value)
mv file1.(day value) file.(day value)


by current day at particular time for eg. 3PM i wil chheck for the pattern in yesterday(eg: 08) file and move the result to file1.08 then wil remove file.08 and move file1.08 to file.08.
by doin this purpose i want to maintain the timestamp of file.08 to be same after moving for the grep item search. i.e it shuld show the yesterday timestamp even aftr i moved the file.....


2. SOLARIS is used,,, GNU command is not working... can u please let me know how to get ?
------------------------------------------------
i want to check the log of prevous day for a pattern
can any one please how to get the prev day?

IMPORTANT thin is, the pattern will b present only mon - fri but not sat and sunday... so on monday i want to chk for friday (previous day) not sunday...also if month as 30 days or 31 days it should be calcualted accordingly.

ex: `date +%d` gives 01...20...

structure of log file:
test.01
test.02
;;
test.30
-------------------------------------------------
# 4  
Old 12-09-2008
Hi, are You saying that the time stamp is in the file name or is it the actual time stamp of the file You want?
Using
Code:
touch -r file.txt file1.txt

will give file1.txt the same access and modification times as file.txt.

If it's in the filename I can't see what the problem is, You already have the filename that You want to use? You use it in the grep statement? You can do something like this:

Code:
orgname=file.08
grep "name" $orgname > $orgname.tmp
mv $orgname.tmp $orgname

And about getting previous "workday", well this might not be the neatest, but anyway... given You run it on a workday:
Code:
[ $(date +%u) -eq 1 ] && prevwday=3 || prevwday=1
prevwdaynumber=$(date -d "$prevwday days ago" +%d)

Best regards,
Lakris

PS And about Your third original question, why does this look so much like a homework? Smilie
I'm not sure about cut but tr would do the trick just fine...

tr , "\n" < file.txt

Last edited by Lakris; 12-09-2008 at 12:32 AM..
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Help with Touch Command

Hello, I am trying to use touch command to create 1200 .txt files. I am using this, but it is not working. touch `seq 1 1200`.txt Regards, Siddhesh.K (5 Replies)
Discussion started by: Siddheshk
5 Replies

2. UNIX for Dummies Questions & Answers

Using touch command in ftp

hi , I am transferring files from one unix server to another, after transfer of a file i want to touch the same file name in another directory in the destination server. How can i touch a file when i am in ftp prompt on the source server. Thanks in advance (2 Replies)
Discussion started by: nick1982
2 Replies

3. Shell Programming and Scripting

Help on touch command

Hi all I changed some of my files in my hoem directory to old dates using the touch command like this touch -t 200805101024 file name but after using this command the date changed properly but it displays like below -rwxr--r-- 1 fincntrg fingrp 193619 May 10 2008 vi.pdf I... (3 Replies)
Discussion started by: thelakbe
3 Replies

4. Shell Programming and Scripting

Issue with touch command

Hi, I have a touch command in my script which creates / updates a file TODAY. Then i try to find the list of files which are newer than this TODAY file. touch `date '+%m%d'`0000 TODAY cd /auto/users-35/p494856/learning/filetransfer/ find . -name "*csv" -newer... (3 Replies)
Discussion started by: arunkumarmc
3 Replies

5. UNIX for Dummies Questions & Answers

touch command

Is there a way to do... touch ./config/newdir/newfile if neither newdir and newfile exists? man touch tells me there's not (?) Is out there another tool to do that? Thx in advance! :b: (6 Replies)
Discussion started by: funyotros
6 Replies

6. UNIX for Dummies Questions & Answers

touch command help

Hi, This might be the stupidest question ever but here it goes, i need to create a file with the name Hello! It's $s It using the touch command but whenever i use touch 'Hello! It's $s' i get s is undefined touch Hello! It's $s i get ' unmatched Please help ^_^ (6 Replies)
Discussion started by: wsn
6 Replies

7. UNIX for Dummies Questions & Answers

reverse of touch command

If touch command sets the modification and access times of files to the current time of day, is there a command that could do the reverse of this? Say change the access times of files to an earlier time or date? Say I have this file: HOME> ls -l -rw-rw-r-- 1 orbix orbix 886 May... (1 Reply)
Discussion started by: Orbix
1 Replies

8. UNIX for Dummies Questions & Answers

touch command

hello everyone i am new to this forum and was wondering if you all could help me out.... i am looking for a touch command that can touch directories as well as files that does not involve sygwin... any and all help would be appreiciated :D (3 Replies)
Discussion started by: OrthoProof USA
3 Replies

9. UNIX for Advanced & Expert Users

command 'touch -c file/dir'

Dear expert, what is this command touch -c filename using for? I find if execute and filename is existed, it update the date to now. If the filename is not exeisted, it don't create the file.. so what is this command using for? Thank a lot! (1 Reply)
Discussion started by: zp523444
1 Replies

10. Shell Programming and Scripting

Usage of Touch Command

HI all, I am wrkin on HP Unix .. can any1 let me know da usage of Touch command in shell scripting (1 Reply)
Discussion started by: ravi.sadani19
1 Replies
Login or Register to Ask a Question