Sponsored Content
Full Discussion: Need a Shell Script for FTP
Top Forums Shell Programming and Scripting Need a Shell Script for FTP Post 302925470 by maruf on Monday 17th of November 2014 11:00:42 AM
Old 11-17-2014
Need a Shell Script for FTP

Hi,

What does this portion do? specially "echo "Couldn't connect" >&2" line
Code:
if [ "$?" -ne 0 ]
then
        echo "Couldn't connect" >&2
        exit
fi

Thanks

Last edited by vbe; 11-17-2014 at 12:13 PM..
 

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
Dancer::ModuleLoader(3pm)				User Contributed Perl Documentation				 Dancer::ModuleLoader(3pm)

NAME
Dancer::ModuleLoader - dynamic module loading helpers for Dancer core components SYNOPSIS
Taken directly from Dancer::Template::TemplateToolkit (which is core): die "Template is needed by Dancer::Template::TemplateToolkit" unless Dancer::ModuleLoader->load('Template'); # we now have Template loaded DESCRIPTION
Sometimes in Dancer core we need to use modules, but we don't want to declare them all in advance in compile-time. These could be because the specific modules provide extra features which depend on code that isn't (and shouldn't) be in core, or perhaps because we only want these components loaded in lazy style, saving loading time a bit. For example, why load Template (which isn't required by Dancer) when you don't use Dancer::Template::TemplateToolkit? To do such things takes a bit of code for localizing $@ and "eval"ing. That code has been refactored into this module to help Dancer core developers. Please only use this for Dancer core modules. If you're writing an external Dancer module (Dancer::Template::Tiny, Dancer::Session::Cookie, etc.), please simply ""use ModuleYouNeed"" in your code and don't use this module. METHODS
/SUBROUTINES load Runs a ""use ModuleYouNeed"". use Dancer::ModuleLoader; ... Dancer::ModuleLoader->load('Something') or die "Couldn't load Something "; # load version 5.0 or more Dancer::ModuleLoader->load('Something', '5.0') or die "Couldn't load Something "; # load version 5.0 or more my ($res, $error) = Dancer::ModuleLoader->load('Something', '5.0'); $res or die "Couldn't load Something : '$error' "; Takes in arguments the module name, and optionally the minimum version number required. In scalar context, returns 1 if successful, 0 if not. In list context, returns 1 if successful, "(0, "error message")" if not. If you need to give argumentto the loading module, please use the method "load_with_params" require Runs a ""require ModuleYouNeed"". use Dancer::ModuleLoader; ... Dancer::ModuleLoader->require('Something') or die "Couldn't require Something "; my ($res, $error) = Dancer::ModuleLoader->require('Something'); $res or die "Couldn't require Something : '$error' "; If you are unsure what you need ("require" or "load"), learn the differences between "require" and "use". Takes in arguments the module name. In scalar context, returns 1 if successful, 0 if not. In list context, returns 1 if successful, "(0, "error message")" if not. load_with_params Runs a ""use ModuleYouNeed qw(param1 param2 ...)"". use Dancer::ModuleLoader; ... Dancer::ModuleLoader->load('Something', qw(param1 param2) ) or die "Couldn't load Something "; my ($res, $error) = Dancer::ModuleLoader->load('Something', @params); $res or die "Couldn't load Something : '$error' "; Takes in arguments the module name, and optionally parameters to pass to the import internal method. In scalar context, returns 1 if successful, 0 if not. In list context, returns 1 if successful, "(0, "error message")" if not. use_lib Runs a ""use lib qw(path1 path2)"" at run time instead of compile time. use Dancer::ModuleLoader; ... Dancer::ModuleLoader->use_lib('path1', @other_paths) or die "Couldn't perform use lib "; my ($res, $error) = Dancer::ModuleLoader->use_lib('path1', @other_paths); $res or die "Couldn't perform use lib : '$error' "; Takes in arguments a list of path to be prepended to @INC, in a similar way than "use lib". However, this is performed at run time, so the list of paths can be generated and dynamic. In scalar context, returns 1 if successful, 0 if not. In list context, returns 1 if successful, "(0, "error message")" if not. class_from_setting Given a setting in Dancer::Config, composes the class it should be. This is the function that translates: # in config.yaml template: "template_toolkit" To the class: Dancer::Template::TemplateToolkit Example: use Dancer::ModuleLoader; my $class = Dancer::ModuleLoader->class_from_setting( 'Dancer::Template' => 'template_toolkit', ); # $class == 'Dancer::Template::TemplateToolkit $class = Dancer::ModuleLoader->class_from_setting( 'Dancer::Template' => 'tiny', ); # class == 'Dancer::Template::Tiny AUTHOR
Alexis Sukrieh LICENSE AND COPYRIGHT
Copyright 2009-2010 Alexis Sukrieh. This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License. See http://dev.perl.org/licenses/ for more information. perl v5.14.2 2011-11-26 Dancer::ModuleLoader(3pm)
All times are GMT -4. The time now is 06:11 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy