Append date to a file from CRON


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Append date to a file from CRON
# 1  
Old 02-14-2008
Append date to a file from CRON

Hi,

I am trying to append date in DAY_Mon_dd_yyyy at the end of a filename from cron.
Cron entry looks as below.
(script to execute) > test_file_`date +"a_%b_%d_%Y"`

File name created after executing the job is test_file_

I am expecting the filename to be something like
test_file_Wed_Feb_13_2008
I tried without double quotes also.

Please help.
# 2  
Old 02-14-2008
Single quote the date format like this:

Code:
(script to execute) > test_file_`date +'a_%b_%d_%Y'`

Regards
# 3  
Old 02-14-2008
I just tried and I am getting the file created as test_file_a_
# 4  
Old 02-14-2008
Sorry, I just copied your sample and forgot the "%" before the "a".
It should be:

Code:
(script to execute) > test_file_`date +'%a_%b_%d_%Y'`

Regards
# 5  
Old 02-14-2008
Hi,

This is my crontab entry:

53 13 * * * /psoft/u02/oracle10g/cds/ATES/backup_ATES.sh > /psoft/u02/oracle10g/cds/ATES/backup_ATES_`date +'%d'` 2>&1


and I get output like this:

-rw-r--r-- 1 oracle dba 2943 Feb 14 13:53 backup_ATES_

$ echo $SHELL
/usr/bin/sh

Thanks.
# 6  
Old 02-14-2008
Change your cron entry to:

53 13 * * * /psoft/u02/oracle10g/cds/ATES/backup_ATES.sh /psoft/u02/oracle10g/cds/ATES/backup_ATES

and your script to:

#!/usr/bin/sh

OUTFILE=$1

{

<your original script>

} > ${OUTFILE}_`date +%d` 2>&1
# 7  
Old 02-14-2008
Thanks. That worked.


Quote:
Originally Posted by sb008
Change your cron entry to:

53 13 * * * /psoft/u02/oracle10g/cds/ATES/backup_ATES.sh /psoft/u02/oracle10g/cds/ATES/backup_ATES

and your script to:

#!/usr/bin/sh

OUTFILE=$1

{

<your original script>

} > ${OUTFILE}_`date +%d` 2>&1
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Append orginal file date to end of file

Trying to process 1000 or so files. Take original date and append to end of file. Like so: tstpls42.bas tstpls42.bas.Sep-11--2011 Been working along these lines: date=`ll tstpls42.bas |cut -c 46-57 |sed -e 's/]/\-/g' | grep -v '^$'` for i in *.bas ; do j=`ll $i /hpdump/b1 | awk... (1 Reply)
Discussion started by: joeadmin
1 Replies

2. Shell Programming and Scripting

Want it to read the file name and then append date stamp at the end of file?

I was thinking something like for i in `find . -name "*.log.Z"`; do mv $i name.log.Z or something like that? (3 Replies)
Discussion started by: xgringo
3 Replies

3. Shell Programming and Scripting

Delete log files content older than 30 days and append the lastest date log file date

To delete log files content older than 30 days and append the lastest date log file date in the respective logs I want to write a shell script that deletes all log files content older than 30 days and append the lastest log file date in the respective logs This is my script cd... (2 Replies)
Discussion started by: sreekumarhari
2 Replies

4. Shell Programming and Scripting

creating delimiter file & append with cron

I have the following script working fine, and need to generate a file delimiter (with tab or special character) for Excel data import. The script will run every hour in crontab to append the new rows to the delimiter, so that I can collect the data for i.e. a week, which will give me a lot of... (0 Replies)
Discussion started by: Daniel Gate
0 Replies

5. UNIX for Dummies Questions & Answers

append file name with date

Hi guys, I created a very basic script that moves a specified file to a directory that I have set using the mv command. What I would like to do is append the file name with the date and time. So if I was to use the script to move a file called abc.txt, the script should rename the file... (1 Reply)
Discussion started by: jjc
1 Replies

6. UNIX for Dummies Questions & Answers

How To Append Date to File Name - AIX 5.3

Hello, I am a novice user on an AIX 5.3 system. I am running some scripts via crontab and redirecting the output to a file. For example: /home/cognos/ppdev_refresh.sh > /home/cognos/ppdev_refresh.txt I want to append the system date to the file name so it becomes:... (7 Replies)
Discussion started by: Maurice Frank
7 Replies

7. Solaris

Find a file and xarg mv to append date to file

Hello All, What I would like to do is search for a file and then run a mv command to rename the file to have todays date appended to it. The find when I run it finds eight or so files and I would like to append a date stamp to each file. If possible using one line command would be great. Can... (6 Replies)
Discussion started by: jacktravine
6 Replies

8. Solaris

gzip a file and append creation date stamp to file

I want to gzip a file and append the creation date to the end of the file. How can I accomplish this task. Basically they are log files which need a creation date stamp appended to make sure they do not overwrite other log files. -jack (3 Replies)
Discussion started by: jacktravine
3 Replies

9. Shell Programming and Scripting

append date to file

Hi I need to append date to filename.Wrote script to get the date from table ,take this date filed and append to my i/p file when call the below script.Any help should be appreciated . Exampel If call the below script a4.sh filename o/p should be filename.2008-02-29 .... (6 Replies)
Discussion started by: mohan705
6 Replies

10. Shell Programming and Scripting

Need a script to Append date to generated .txt file

Hi, Can anyone plz share their experience with - Building shell script to append the file with date in following format- Filename_MMDDYYYY.txt Thanks in advance (2 Replies)
Discussion started by: prince_of_focus
2 Replies
Login or Register to Ask a Question