move from one IP to another >ystrdays file


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting move from one IP to another >ystrdays file
# 8  
Old 11-11-2003
gr8

tikual
script looks great :-))
wat is -ivn for ?
anyway
looking for man entry;-)
thanks buddy
# 9  
Old 11-11-2003
tikual
when i run the script using ksh -x <script name>
it says the ftp server ready and after that says password required for devops with cursor blinking at the end of
password:
even after passing the password there is no response and system kind of hangs
any idea about that!!!!

this is what it shows at the end of it all

230 User devops logged in
# 10  
Old 11-11-2003
Quote:
wat is -ivn for ?
Here are the requested option definitions. See also, man ftp
-i Turns off interactive prompting during multiple file transfers.

-n Restrains ftp from attempting ``auto-login'' upon initial connection. If auto-login is enabled, ftp will check the .netrc (seenetrc(5)) file in the user's home directory for an entry describing an account on the remote machine. If no entry exists, ftp will prompt for the remote machine login name (default is the user identity on the local machine), and, if necessary, prompt for a password and an account with which to login.

-v Verbose option forces ftp to show all responses from the remote server, as well as report on data transfer statistics.

ksh -x <script name>
This is a debug mode of sorts, that displays all commands and arguments as the script executes. Remove the line as its not needed. Use a log file instead.
# 11  
Old 11-11-2003
Hammer & Screwdriver

Ok, two things you may check first.
1. Do all steps by manual first. See any errors found.
2. According you posted that message from the script, the ftp login success but hang. Did you remove the comment line from the script first?? I mean you should remove the line started from "#" one.

Remove the following lines in ftp part.
#If the file is binary, change it from 'asc' to 'bi'
#Modify this line

I am sorry for didn't mention that clearly.Smilie
# 12  
Old 11-12-2003
i have removed all comments
i am not making a log file also!!!
does it make any diff?
thanks again
# 13  
Old 11-12-2003
maverick, I think it might help if you would post your exact script.
# 14  
Old 11-12-2003
my script

this is how my script looks

USER=devops
PASSWD=*secret*
HOST=1.23.101.77


ftp -ivn << EOF
open $HOST
user $USER $PASSWD

cd /HOME/proddata
put fbdemo.dat
bye
EOF




I edited the script to remove the password -- Perderabo

Last edited by Perderabo; 11-12-2003 at 11:52 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Move a TXT file greater or equal 355 MB with its corresponding .LST file

Good morning, i need your help please I need to move a .TXT file greater or igual 355 MB and its correspondent .LST file in a non recursive way The operating system is: uname -a SunOS server01c 5.10 Generic_144488-01 sun4u sparc SUNW,SPARC-Enterprise For example: rw-r--r-- 1 xptol ... (8 Replies)
Discussion started by: alexcol
8 Replies

2. UNIX for Beginners Questions & Answers

Move the file from one path to another using .sh file in EBS Oracle apps.

Hi All, I just want to move the file from one path to another using .sh file in EBS oracle apps. I have written in .prog but i need in .sh (file.sh) XXC_SAMPLE_FILE.prog #!/bin/bash # XXC_SAMPLE_FILE.prog DATE_TIME=`date | awk {' print $1"_"$2"_"$3"_"$4 '}` echo "parse_parms" ... (4 Replies)
Discussion started by: Mist123
4 Replies

3. Shell Programming and Scripting

Move file from one directory and update the list file once moved.

Dears, I have a listfile contains list of files path. i need to read the line of the listfile mv the file to other directory and update the listfile by deleting the lines of the listfile. #!/bin/bash target=/fstest/INVESTIG/Sadiq/TEST_ARCH while read -r line || ]; do mv $line... (19 Replies)
Discussion started by: sadique.manzar
19 Replies

4. Shell Programming and Scripting

Shell script to get the latest file from the file list and move

Hi, Anybody help me to write a Shell Script Get the latest file from the file list based on created and then move to the target directory. Tried with the following script: got error. A=$(ls -1dt $(find "cveit/local_ftp/reflash-parts" -type f -daystart -mtime -$dateoffset) | head... (2 Replies)
Discussion started by: saravan_an
2 Replies

5. Shell Programming and Scripting

Remove bad records from file and move them into a file then send those via email

Hi my requirement is that i want pull the bad records from input file and move those records in to a seperate file. that file has to be sent via email.. any suggentions please (1 Reply)
Discussion started by: sxk4999
1 Replies

6. Shell Programming and Scripting

A script that will move a file to a directory with the same name and then rename that file

Hello all. I am new to this forum (and somewhat new to UNIX / LINUX - I started using ubuntu 1 year ago).:b: I have the following problem that I have not been able to figure out how to take care of and I was wondering if anyone could help me out.:confused: I have all of my music stored in... (7 Replies)
Discussion started by: marcozd
7 Replies

7. Shell Programming and Scripting

move a file

hi, i was trying to move a file from my directoty to the home directory. * the file is not found in my directory too as it is moved but not found in the home directory i was using: cd my_dir mv filename homedir_name So kindly tell me... (2 Replies)
Discussion started by: janani_kalyan
2 Replies

8. Shell Programming and Scripting

File Move Based on 1st Character of File Name

I need some help with a unix script to mv image files to subdirectories based on the 1st character of the filename. See example below... /images/main 1191.jpg 9999.jpg A101.jpg A102.jpg B201.jpg c333.jpg ... Z999.jpg I would like to move to the following: ... (11 Replies)
Discussion started by: srdconsulting
11 Replies

9. Shell Programming and Scripting

move file

In the directory /tmp , there are some new files will be created to it by time to time , I want to mv the files that are created within 15 minutes to other direcory eg. /tmp/backup , could suggest what can I do ? thx (1 Reply)
Discussion started by: ust
1 Replies

10. UNIX for Advanced & Expert Users

help move file

my home directory is mounted on an nfs across the network. I am able to access my home directory, create files, remove files and write to a file in my home directory but when i tried to move any files from my home directory to another directory on my workstation i get an error "Permission ... (1 Reply)
Discussion started by: hassan2
1 Replies
Login or Register to Ask a Question