Log file problem


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Log file problem
# 1  
Old 12-27-2007
Log file problem

I want to transfer files from ABC server to XYZ server in which i am successful. I would like to create a log file also by the name of current date. For some reason my script gives me an error on my scp -p command and it says LOCAL_LOG_FILE: not found and REMOTE_LOG_FILE not found. Any clues whats going on?

Code:
LOCAL_LOG_FILE ="log_`date +%m%d%y`"
REMOTE_LOG_FILE ="XYZ:/terry/dukes/bkup/${LOCAL_LOG_FILE}"
date +"%m/%d/%y %H:%M:%S" > $LOCAL_LOG_FILE
scp -p /some/user/files/*.gif
XYZ:/terry/dukes/bkup >$LOCAL_LOG_FILE 2>&1
echo "File copied Successfully `date +%m%d%y:%H:%M:%S`"  >$LOCAL_LOG_FILE
scp -p $LOCAL_LOG_FILE $REMOTE_LOG_FILE

I want to create a log file on the remote system + local system with the "file copied successfully" message included in that log file. But its not creating a log file. Everytime i run the script i get:

Code:
LOCAL_LOG_FILE ="log_`date +%m%d%Y`"
category_captains.sh[32]: LOCAL_LOG_FILE:  not found.
REMOTE_LOG_FILE ="XYZ:/terry/dukes/bkup/${LOCAL_LOG_FILE}"
category_captains.sh[33]: REMOTE_LOG_FILE:  not found.

Because of that i believe its not creating the file

Last edited by chris1234; 12-27-2007 at 02:33 PM..
# 2  
Old 12-27-2007
You may have more code than what you posted that is blowing away the file. I am thinking this is so since the code you posted, you are overwritting what you wanted in there:
Code:
LOCAL_LOG_FILE ="log_`date +%m%d%y`"
REMOTE_LOG_FILE ="XYZ:/terry/dukes/bkup/${LOCAL_LOG_FILE}"
# Next line creates new file due to > character
date +"%m/%d/%y %H:%M:%S" > $LOCAL_LOG_FILE
scp -p /some/user/files/*.gif
XYZ:/terry/dukes/bkup >$LOCAL_LOG_FILE 2>&1
# This line overwrites what you put in the file already due to > character #   you want to append so use >>
echo "File copied Successfully `date +%m%d%y:%H:%M:%S`"  >$LOCAL_LOG_FILE
scp -p $LOCAL_LOG_FILE $REMOTE_LOG_FILE

# 3  
Old 12-27-2007
Thats all the code

That's all the code i am using. Secondly the script was working fine until i accidentally removed. I am glad i had the print out in front of me. So i am typing exactly the same thing but everytime i run my script it gives me that LOCAL_LOG_FILE not found and REMOTE_LOG_FILE not found.

I have been trying to debug but dont know whats going on. I had my chmod 777 (filename).
# 4  
Old 12-27-2007
Post how you are running the script and the output of echo $SHELL from the command line, please.
# 5  
Old 12-27-2007
Hmm,

got the soln.

what you have done is
LOCAL_LOG_FILE<space>="log_`date +%m%d%Y`"
category_captains.sh[32]: LOCAL_LOG_FILE: not found.
REMOTE_LOG_FILE ="XYZ:/terry/dukes/bkup/${LOCAL_LOG_FILE}"
category_captains.sh[33]: REMOTE_LOG_FILE: not found

you should not leave space in between .
eg
[SIVA ~]$ LOCAL_LOG_FILE="log_`date +%m%d%y`"
[SIVA ~]$ echo $LOCAL_LOG_FILE
log_122807

Smilie Wishes,
Siva.
# 6  
Old 12-27-2007
Great catch, Sivaswami.
# 7  
Old 12-27-2007
Thank you siva and rtm

You guys got it man. It was that stupid space. Duh.. I cannot believe i made that mistake.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Problem - create log file

I need to create shell script (check system ) to display the output to the console and write these output to a log file at the same time. My shell script is like that Main() { .... .... } MainIt takes about 30s to display all the output to the console. Then I put this command to the... (4 Replies)
Discussion started by: bobochacha29
4 Replies

2. Solaris

Problem with log file script

Hi, I have a log file that i'd like to monitor for a string. Now the log file rolls over everytime the server is restarted, so i'm doing a reverse list and then reading the latest log file. So for the code, the log file is 'test1.txt'. I check for the string and pipe to black hole (>... (2 Replies)
Discussion started by: horhif
2 Replies

3. Shell Programming and Scripting

Problem - Log File

Hi, I am in trouble ... again :wall: I formating a log file as .txt from Unix (solaris 9) and then I compress it with gzip and I use uuencode and send it in an email. gzip -c ${fic_report} | uuencode Report_File.gz > ${attachment_file} my problem is when I received the mail with the... (6 Replies)
Discussion started by: Aswex
6 Replies

4. Shell Programming and Scripting

Problem with Log File

Hi, I have written a bash shell script. In order to create a log file when I run the script, as well as print the output to the terminal, I call it in the following manner: my_shell_script 2>&1 | tee my_log_fileThis seems to work well. However, I have put some statements in the script to... (2 Replies)
Discussion started by: msb65
2 Replies

5. Shell Programming and Scripting

Capture all error message in Log file and send the Log file by email

Hi I have a requirement to write a script to capture all errors in a Logfile and send the file in email. If there is any error occurred the subject of email will be ERROR , If there are no error occurred the subject of email will be SUCCESS. So I created a Log file and put the Appropriate... (2 Replies)
Discussion started by: dgmm
2 Replies

6. Shell Programming and Scripting

log file problem

Hi, I have a problem with my logfile. I am redirecting my output to log file and when iam viewing as text doc it is looking with some nonsense characters...please do help me on this .thank you. here is my logfile which it is showing different behaviour: spawn spawn minicom Welcome... (6 Replies)
Discussion started by: vanid
6 Replies

7. Shell Programming and Scripting

Delete log file entries based on the Date/Timestamp within log file

If a log file is in the following format 28-Jul-10 ::: Log message 28-Jul-10 ::: Log message 29-Jul-10 ::: Log message 30-Jul-10 ::: Log message 31-Jul-10 ::: Log message 31-Jul-10 ::: Log message 1-Aug-10 ::: Log message 1-Aug-10 ::: Log message 2-Aug-10 ::: Log message 2-Aug-10 :::... (3 Replies)
Discussion started by: vikram3.r
3 Replies

8. Shell Programming and Scripting

Problem in redirecting ftp msgs to a log file

Hi all.. The following set of statements is used in a shell script to ftp a file to a remote machine I want to redirect the ftp messages thrown by the first ftp statement to a log file. As you can see there is a logic downstream to decide if the ftp was a success or not. But i am not... (5 Replies)
Discussion started by: hareeshkumaru
5 Replies

9. Solaris

problem with not able to log in

Dear all I am facing a problem that I cannot able to login through 192.168.11.6. I even unplumb it and then plumb it again also, but still facing a problem. Could anyone tell me that what is the meaning of "inet 192.168.11.6 --> 192.168.11.6". I even restart the server two time also ,but still... (7 Replies)
Discussion started by: girish.batra
7 Replies

10. UNIX for Dummies Questions & Answers

Log in Problem

Hello: I'm having the following problem when I try to log in to our Tru64 system, from any machine using root or any other user. After entering the passowrd I get the following message: and not being directed to the shell console. I think it has something to do with the audit process... (2 Replies)
Discussion started by: aladdin
2 Replies
Login or Register to Ask a Question