using FTP related commands in nawk utility in shell programming


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting using FTP related commands in nawk utility in shell programming
# 1  
Old 08-05-2002
using FTP related commands in nawk utility in shell programming

I am facing problem while accesing FTP related commands in nawk code in bourne shell programming.I can able to connect to remote machine, but i can't able to get files from that machine.
Please help me in this.If you send code along with the solution, then it will be usefull for me.
# 2  
Old 08-05-2002
Of course it would be useful to send the code!

Here's one way...not the only way as there are other remoter tools...but this was one I was forced to use to perform FTP functions within a script....

FTPid='your user'
FTPpwd='your password'
FTPserver='your destination server'
FINDstatement='find /export/home/ -mtime +29 -exec rm {} \\;'

(
sleep 2
echo ${FTPid}
sleep 2
echo ${FTPpwd}
sleep 2
echo ${FINDstatement}
sleep 5
exit
) | telnet ${FTPserver}

Obviously the FIND statement can be anything.......I am putting in the sleeps so that it has enought time to complete before doing to next step.
# 3  
Old 08-06-2002
Hello

Thanks for gave the reply.But that is not my requirement.

let me to explain clearly what i am facing problem, probably i might not explain clearly first time. I have a file which will contain no. of records. Each record contain <filename> <filepath>. I have to read each record and get the filename which is there in filepath from the remote machine, this process has to be done till to end of the file.It has to be done by using "nawk" in shell script. If you know pls help me in this and probably if you send code, then it will be usefull.
# 4  
Old 08-06-2002
According to our rules:
Quote:
(6) Do not post classroom or homework problems.
And I must say that I suspect that this is an assignment of some kind. If I am wrong, why is nawk within a shell script a required aspect of the solution? Most people would be happy with any solution so long as it works. Requiring the use of a specific tool makes this look like homework.
# 5  
Old 08-10-2002
At the risk of a "me too" reply ...

me too .. I agree.

There are much better tools to use than nawk for this type of script.

jiin
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Open Source

Shell script file movement to a Mail Box server using ftp commands

Hi All, I have a current Process that runs "windows script " for the file movement that needs to changed to a "DataStage Process (Using shell script )" Source :Text file is getting generated as part of Datastage Jobs processes and resides in a shared drive (Unix server) Target :ftp... (2 Replies)
Discussion started by: developer.dwh9
2 Replies

2. Shell Programming and Scripting

Commands not executing after FTP in shell script

Hello In the shell script we have a FTP command like below ftp -n -v -q winftp.principal.com >/infa/datafiles/GRP/Scripts/ftp_from_infa_dvcn.log<<END_SCRIPT   quote USER $FTP_USER quote PASS $FTP_PASS ascii lcd $FTP_LOCALDIR cd $FTP_FLDR put $FTP_FILE   bye exit If i... (1 Reply)
Discussion started by: Pratik4891
1 Replies

3. UNIX for Dummies Questions & Answers

unix commands related to ftp of files..

Hi, I am new to unix , I was planning to write a script that will FTP files to destination folder. , Please guide me what are the various networking commands that unix will help in this ftp process..?:confused: (1 Reply)
Discussion started by: rahul125
1 Replies

4. Shell Programming and Scripting

Korn Shell programming (FTP, LOOPS, GREP)

Hello All, I have another Korn shell question. I am writing a script that will ftp a file from my production database to my test database. To this, I have to construct a loop that checks a specified folder for a file. If the file exists, I want it execute the ftp protocol and then exit. ... (2 Replies)
Discussion started by: jonesdk5
2 Replies

5. UNIX for Advanced & Expert Users

Unix commands Related to

Hi all, Does unix has any commands for creating BLOB and CLOB objects. Please forward me any sites or samples (2 Replies)
Discussion started by: rajeshorpu
2 Replies

6. Solaris

Queries related to runlevels and fdisk utility...

Hello friends.. I have 2 doubts as follows: 1.What is the difference between init s (single user mode), init S (single user mode), init 1 (single user mode), and again failsafe mode. As far as I have seen, init s and init 1 does the same thing: putting the system in maintenance mode asking for... (2 Replies)
Discussion started by: saagar
2 Replies

7. Shell Programming and Scripting

How to use ftp commands inside shell script? Help please

Dears, I'm new in shell scripting and i need your help, i would like to know how can i create a script to ftp to a certain unix/linux machine/server IP address and get a file for example without user intervention? How can i force the script to use a certain username and password to access this... (4 Replies)
Discussion started by: Dendany83
4 Replies

8. Solaris

Questions related to ndd commands

Hello Gurus I would like to know more about ndd commands related to ethernet(NIC) like how to set link_status, link_speed & link_mode as I know how to check these value. And I also would like to know how to make these setting permanents after reboot as I know that these setting will vanish... (5 Replies)
Discussion started by: amity
5 Replies

9. UNIX for Dummies Questions & Answers

Memory related Unix commands

I am using rsync for my backing up my files, from one box to other box, While doing I am getting following error. arb821/Server/logs/rpcMetrics/ arb821/Server/logs/AribaOrderTransmitterLog.txt write failed on arb821/Server/logs/AribaOrderTransmitterLog.txt : Error 0 rsync error: error in... (2 Replies)
Discussion started by: redlotus72
2 Replies

10. UNIX for Dummies Questions & Answers

How are the following two commands related?

Trying to get through UNIX class that I mostly missed due to illness. If anyone can help me with this question I'd appreciate it. Thank you. How are the following two commands related? 1s -1R /proc ps ax (1 Reply)
Discussion started by: radhanuja
1 Replies
Login or Register to Ask a Question