Sponsored Content
Full Discussion: Need a Shell Script for FTP
Top Forums Shell Programming and Scripting Need a Shell Script for FTP Post 302926725 by maruf on Wednesday 26th of November 2014 11:58:51 AM
Old 11-26-2014
Need a Shell Script for FTP

Code:
function main_menu()
{
    while :
    do
        echo
	clear
        echo "------------------------------------------------------------------------------------"   
        echo ""
	     echo "			  	                 ABC System Limited"
	     echo " 	               	               MAIN MENU"
        echo "------------------------------------------------------------------------------------"
        echo
	echo "		Before"
	echo 
        echo "			              1.Retrieve & Transfer Files"
	echo
	echo "		Start"
	echo 
        echo "			               2.start Batch run"
	echo "			                   3.Generate Report & Monitor log" 
	echo						
        echo "	 After"
	echo
	echo "			                   4.Retrieve & Transfer sys Files"
	echo "			                   5.Retrieve & Transfer DB & log files"
	echo 			
        echo "		                   99.Quit"
        echo""
        echo "--------------------------------v1.0-------------------------------------------------"
        echo ""
        read -p "Select from 1-7 or 99 to Exit: " m_choice
        echo
 
        case "$m_choice" in 
            1)  incoming
                echo
                ;;
            2)  outgoing
                echo
                ;;
            3)  backup
                ;;
            99)  exit 0
                ;;
            *)  echo "Bad Option"
                echo
                ;;
        esac
    done
}
 
function incoming()
{
    while :
    do
        echo
        clear
        echo "------------------------------------------------------------------------------------"
        echo ""
        echo "                   	       ABC System Limited"
        echo "                                 Support Team" 
        echo "------------------------------------------------------------------------------------"
        echo
	echo "			                   Retrieve & Transfer  files"
	echo
        echo " 		             11. Retrieve & Transfer  files1"
        echo "		             12. Retrieve & Transfer  files2"
        echo "			         13. Retrieve & Transfer  file3"
	echo "			             14. Retrieve & Transfer  file4"
	echo 
	echo "			              00. Retrieve all"
        echo ""
	echo "			              99. Exit"
        echo ""
	echo "--------------------------------v1.0-------------------------------------------------"
	echo ""
        read -p "Selct From 1-4 or Select All: " s_choice
        echo
 
        case "$s_choice" in
            11)  /tmp/menu45.sh [run the script]
                ;;
            12)  echo "Sub-Menu Option 2"
                echo
                ;;
	    13)  echo "Sub-Menu Option 3"
                echo 
		;;
	    14)  echo "Sub-Menu Option 4"
                echo 
		;;
	   97)  echo "Sub-Menu Option 5"
                echo
                ;;

            99)  main_menu
                ;;

            *)  echo "Bad Option"
                echo
                ;;
        esac
    done
}
 main_menu
exit 1

if successfull below mess will show
Following file has been Retrieved from FTP
filename here
Renamed as
renamed filename

if error
file size mismatch
Expected file was not in location
expected filename ""
file indicator problem

And Transfer to server
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

using ftp in a shell script.

I am trying to ftp some files from a certain directory, but i got an invalid command. does anybody know why i got this error? ftp -v -i -n <<SCRIPT open servername user username password cd /server/logs for file in MCWAS* do put ${file} /home/test/${file} done bye SCRIPT (2 Replies)
Discussion started by: caesarkim
2 Replies

2. Shell Programming and Scripting

ftp in shell script

Hi, I have to ftp to a remote machine. i have got the Ip, username and password and the file path.. I need to get the file name with out user intervention in my script.. is there any way to do this.. please help esham (2 Replies)
Discussion started by: esham
2 Replies

3. UNIX for Dummies Questions & Answers

Shell script for ftp

Hi ,, I am wrting a shell script to ftp a file from remote server but its giving some problem to me.can you help me in debugging this. #!/usr/bin/ksh HOST="some ip" user="user_name" passwd="password" ftp -n $HOST >>END_SCRIPT USER $user $passwd binary prompt get... (3 Replies)
Discussion started by: namishtiwari
3 Replies

4. Shell Programming and Scripting

FTP via shell script

Hi, I need to upload a file via ftp. I have given : ftp -n $HOST <<END quote user $USER quote pass $PASSWD prompt off put bus.txt quit END Its throwing a syntax error at "<<" symbol. What should be done for this ?? (2 Replies)
Discussion started by: risshanth
2 Replies

5. Shell Programming and Scripting

ftp with shell script

Can I ftp to put file with shell script(as bath file) ? Plz give the simple code to do that. My script look like that #!/bin/sh echo "Start ftp" ftp temphost <<EOF put file quit EOF # end This code ignore username & password but I need to input. How to input username &... (8 Replies)
Discussion started by: aungomarin
8 Replies

6. UNIX for Advanced & Expert Users

FTP in shell script

HI ALL i am writing a shell script in which i have to use FTP command like. FTP <ip address> cd xyz mget* bye but i am not able to perform any command from shell script. once the control goes to FTP, i again have to type all the things. i just want my shell script to take care of the... (8 Replies)
Discussion started by: infyanurag
8 Replies

7. Shell Programming and Scripting

Help with Shell script for FTP

#!/usr/bin/ksh export filename=/grid/PowerCenter/inbound/AT/filelist.txt export SOURCE_DIR=/grid/PowerCenter/inbound/AT export ICOMS_FTP_TGT_DIR1=/dw/input/ATU/ICOM_SERV1 export ICOMS_FTP_TGT_DIR2=/dw/input/AT/ICOM_SERV2 export FILE_MASK="ATRPU_RP_ATU" echo "start" ftp_data_file() { ... (15 Replies)
Discussion started by: vsmeruga
15 Replies

8. Shell Programming and Scripting

FTP within a SHELL script

I am running the following on linux (on a mac): filename="/Users/thisfilename.txt" hostname="ftp.mysite.com" username="myusername" password="mypassword" echo '=======FTP========' ftp -un $hostname <<EOF quote USER $username quote PASS $password binary put $filename quit EOF I... (4 Replies)
Discussion started by: globalnerds
4 Replies

9. Shell Programming and Scripting

Help With FTP Shell Script

So i Administer multiple ftp servers that run on dynamic IP's as well as user and password settings are changed by other people constantly. What i need to do is ensure that an FTP is server is up on the IP i check. As well as the login credentials work. Here is a simple script i wrote. However... (2 Replies)
Discussion started by: Noledge
2 Replies

10. UNIX for Dummies Questions & Answers

FTP in Shell Script

Dear All, I am using FTP in a script. But when i exit from the FTP session, the commands written after EOF don't get executed. i.e. ftp <<EOF quote $login quote $password cd /tmp mget *somefile* bye EOF echo $some_variable #This last echo command or whatever piece of commands i... (10 Replies)
Discussion started by: Salman786
10 Replies
ADSL-CONNECT(8) 					      System Manager's Manual						   ADSL-CONNECT(8)

NAME
adsl-connect - Shell script to manage a PPPoE link SYNOPSIS
adsl-connect [config_file] adsl-connect interface user [config_file] DESCRIPTION
adsl-connect is a shell script which manages an ADSL connection using the Roaring Penguin user-space PPPoE client. If you omit con- fig_file, the default file /etc/sysconfig/network-scripts/ifcfg-ppp0 is used. If you supply interface and user, then they override the Ethernet interface and user-name settings in the configuration file. Note that normally, you should not invoke adsl-connect directly. Instead, use adsl-start to bring up the ADSL connection. adsl-connect first reads a configuration file. It then brings up a PPPoE connection. If the connection ever drops, a message is logged to syslog, and adsl-connect re-establishes the connection. In addition, each time the connection is dropped or cannot be established, adsl- connect executes the script /etc/ppp/adsl-lost if it exists and is executable. The shell script adsl-stop causes adsl-connect to break out of its loop, bring the connection down, and exit. TECHNICAL DETAILS
adsl-connect uses the following shell variables from the configuration file: ETH The Ethernet interface connected to the ADSL modem (for example, eth0). USER The ADSL user-id (for example, b1xxnxnx@sympatico.ca). PIDFILE A file in which to write the process-ID of the adsl-connect process (for example, /var/run/pppoe.pid). Two additional files ($PID- FILE.pppd and $PIDFILE.pppoe) hold the process-ID's of the pppd and pppoe processes, respectively. By using different configuration files with different PIDFILE settings, you can manage multiple PPPoE connections. Just specify the con- figuration file as an argument to adsl-start and adsl-stop. AUTHOR
adsl-connect was written by David F. Skoll <dfs@roaringpenguin.com>. The pppoe home page is http://www.roaringpenguin.com/pppoe/. SEE ALSO
pppoe(8), adsl-start(8), adsl-stop(8), pppd(8), pppoe.conf(5), adsl-setup(8), adsl-status(8), pppoe-sniff(8), pppoe-server(8), pppoe- relay(8) 4th Berkeley Distribution 21 February 2000 ADSL-CONNECT(8)
All times are GMT -4. The time now is 06:02 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy