Issue with touch command


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Issue with touch command
# 1  
Old 05-24-2010
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.


Code:
touch `date '+%m%d'`0000 TODAY
cd /auto/users-35/p494856/learning/filetransfer/
find . -name "*csv" -newer /auto/users-35/p494856/learning/scripts/TODAY -exec ls -ltr {} \; > temp.txt

This script is working fine when I execute it manually through prompt.

Code:
arun's dev >sh check_list.sh

But when I try to execute this script using a cron job, it is not working.

Here is what i mentioned in the cron.txt
Code:
53 5 * * 1-5 /auto/users-35/p494856/learning/scripts/cash_ladder_check_list.sh

Then i gave crontab cron.txt..

When the job is executed, I couldnt see the TODAY file updated...

Could someone help me out in this?

Regards
Arun
# 2  
Old 05-24-2010
Have you written following line at the begining of your script :

Code:
#!/usr/bin/sh

Also add the exect full path to "TODAY" :
Code:
touch `date '+%m%d'`/auto/users-35/p494856/learning/scripts/TODAY

If yes the post the exect script...

Smilie

Last edited by Reboot; 05-24-2010 at 07:17 AM.. Reason: Missed one more point..
# 3  
Old 05-24-2010
Hi,

Here is the script-

Code:
 

#! /bin/sh

touch `date '+%m%d'`0000 TODAY
cd /auto/users-35/p494856/learning/filetransfer/
find . -name "*csv" -newer /auto/users-35/p494856/learning/scripts/TODAY -exec ls -ltr {} \; > temp.txt

The above script is placed under the path /auto/users-35/p494856/learning/scripts/

Regards
Arun

---------- Post updated at 06:58 AM ---------- Previous update was at 06:34 AM ----------

Hi,

You are right... I added the path name for the TODAY file in the script.

Its working fine now...

Thanks
Arun
# 4  
Old 05-24-2010
Hi Arun,
It is a good practice to always use full path name for file ordirectory, when you want the script to be run by cron....SmilieSmilie

Because cron daemon starts the script in the home directory of root.
Suppose root is having home directory "/root".Then your script will be started as :

Code:
/root# /bin/sh /path/of/the/script     ---->>> WHERE /root IS THE WORKING DIRECTORY FOR CRON DAEMON.

SmilieSmilie
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. 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

5. UNIX for Dummies Questions & Answers

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... (3 Replies)
Discussion started by: prsam
3 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