Shell script not working properly


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Shell script not working properly
# 1  
Old 06-24-2010
Shell script not working properly

Hello,

i have below shell script to process ftp get from server and create file list afte finish.
this shell scipt has 6 parameter input.
unfortunately, it is only working to get the file and terminated before creating file list.
please help.

thanks,

#!/bin/ksh
## example usage : ./MSDP_ftp.sh 172.24.69.11 infadm infadm123 /sitreception/MSDP /u01/infadm/dev/devproject/source/MSDP /u01/infadm/dev/devproject/source/MSDP/test.txt
##Parameter Input
MSDP_HOST=$1
MSDP_USER=$2
MSDP_PASSWD=$3
MSDP_DIR=$4
TARGET_DIR=$5
INPUT_FILE1=$6
cd $TARGET_DIR
OUTPUT_DIR=`pwd`
###################################
echo "FTP START:" `date`
###################################
ftp -n $MSDP_HOST <<END_SCRIPT
quote USER $MSDP_USER
quote PASS $MSDP_PASSWD
cd $MSDP_DIR
ascii
prompt
mget *.xml
bye
END_SCRIPT
##################################
echo "FTP END:" `date`
##################################
##################################
# Create list files
##################################
echo $INPUT_FILE1
ls -ltr | grep xml | awk -F" " '{print "'"${OUTPUT_DIR}"'" "/" $9}' > $INPUT_FILE1
exit 0
# 2  
Old 06-24-2010
Are you getting any error? Or do you get an empty file created for $INPUT_FILE1

Also, you can simplify the last statement to generate the list as follows:

Code:
ls -1 $OUTPUT_DIR/*.xml > $INPUT_FILE1

# 3  
Old 06-24-2010
i don't get any error. actually this part is working properly when i run it manually:

ls -ltr | grep xml | awk -F" " '{print "'"${OUTPUT_DIR}"'" "/" $9}' > $INPUT_FILE1

somehow the script is end after finishing the ftp.

even the echo "FTP END:" `date` is not appear on the screen.

thanks,
# 4  
Old 06-24-2010
Can't spot anything wrong as such with the script.

Try putting a "set -x" on the top. That might give insight into whats going on.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

File count script not working properly

Hi Experts, I have this script to count the number of files based on prefix and suffix values. #!/bin/ksh file_date=$1 prefix=$2 suffix=$3 file_count=$(ls -l /db/day_file/{$prefix}*${file_date}*{$suffix}) The files in the directory /db/day_file are as below. 20170501 20170501... (7 Replies)
Discussion started by: nalu
7 Replies

2. Shell Programming and Scripting

Sed script not working properly on Solaris (works fine on AIX)?

Hi, I have a problem with a SED script that works fine on AIX but does not work properly on a Solaris system. The ksh script executes the SED and puts the output in HTML in tables. But the layout of the output in HTML is not shown correctly(no tables, no color). Can anyone tell if there is... (7 Replies)
Discussion started by: Faith111
7 Replies

3. Shell Programming and Scripting

Moving old files bash script - not working properly

I'm trying to write a script that moves data that's older than 2 weeks to a different place. It works well, EXCEPT, that when the script hits a file within a directory inside the working directory, it will move it to the root of the destination directory instead of putting it in the correct... (1 Reply)
Discussion started by: ugolee
1 Replies

4. Shell Programming and Scripting

script line not working properly

Hi , I am using the below command in script. $_IDLETIME is returning value if i execute the script manually. sar > $_LOCATION/sar.txt _IDLETIME=`tail -2 $_LOCATION/sar.txt | head -1 | tr -s ' ' ' ' | cut -d ' ' -f8 | cut -d '.' -f1`; if But it s not returning any value if it put the... (3 Replies)
Discussion started by: ahamed
3 Replies

5. Shell Programming and Scripting

Shell Script Email not working Properly

Hi GURU's, I'm using a Shell Script to send email's as an attachment. I'm Storing the email address in a table and catching in a variable. MAILLIST=`noarg sqlplus -s $OraUsr << EOF set heading off set feedback off set echo off SELECT email_ids FROM tpemail_table WHERE... (9 Replies)
Discussion started by: karthikraj
9 Replies

6. UNIX for Dummies Questions & Answers

Issue with shell script: not detecting file properly

The following script is meant to check the presence of a file - called filename0.94.tar.gz - and uncompress it: #!/bin/sh # check presence of file VERSION=0.94 if ; then # file not present: abort echo "Files cannot be found." #exit 1 (commented out this line, so we can see how the... (2 Replies)
Discussion started by: figaro
2 Replies

7. Shell Programming and Scripting

Script not working..."sort" not working properly....

Hello all, I have a file - 12.txt cat 12.txt =============================================== Number of executions = 2 Total execution time (sec.ms) = 0.009883 Number of executions = 8 Total execution time (sec.ms) = 0.001270 Number of... (23 Replies)
Discussion started by: Rahulpict
23 Replies

8. Shell Programming and Scripting

\n not working properly

Hi all, I'm trying to generate a series of txt files starting from a plain csv file part of my code: #!/bin/ksh INSTALLDIR=/Users/ME/Installdir CSV=CSV.csv TMP=/tmp/$(basename $0).txt tr -s "\r" "\n" < /$INSTALLDIR/$CSV > $TMP function Makefiles { printf '%24s:%30s\n' "sometext"... (1 Reply)
Discussion started by: Jive Spector
1 Replies

9. Shell Programming and Scripting

Shell script not processing if statement properly

Hi I am trying to create a shell script that will look for a contracthead file first and if the contract head file does not exist on day1 exit script. Now on day2 if contracthead exists or not run the script uploading files in order such as contract line then contract contact so the... (2 Replies)
Discussion started by: jonathan184
2 Replies

10. Programming

y is this not working properly?

#include <stdio.h> #include <sys/types.h> #include <string.h> #include <sys/stat.h> #include <unistd.h> struct stat s; main() { char c; if (fork()==0) { system("clear"); do { printf("myAI\\>§ "); scanf("%s",c); if(stat(c,&s)>-1) {... (3 Replies)
Discussion started by: C|[anti-trust]
3 Replies
Login or Register to Ask a Question