11-17-2014
Need a Shell Script for FTP
Hi,
Yes..file kept in linux /tmp/ folder.
---------- Post updated at 08:05 PM ---------- Previous update was at 01:33 PM ----------
Hi,
Any update ?
Thanks
---------- Post updated at 08:18 PM ---------- Previous update was at 08:05 PM ----------
If possible please help me...
10 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
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
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
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
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
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
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
#!/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
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
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
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
LEARN ABOUT LINUX
set_color
set_color(1) fish set_color(1)
NAME
set_color - set_color - set the terminal color
set_color - set the terminal color
Synopsis
set_color [-v --version] [-h --help] [-b --background COLOR] [COLOR]
Description
Change the foreground and/or background color of the terminal. COLOR is one of black, red, green, brown, yellow, blue, magenta, purple,
cyan, white and normal.
o -b, --background Set the background color
o -c, --print-colors Prints a list of all valid color names
o -h, --help Display help message and exit
o -o, --bold Set bold or extra bright mode
o -u, --underline Set underlined mode
o -v, --version Display version and exit
Calling set_color normal will set the terminal color to whatever is the default color of the terminal.
Some terminals use the --bold escape sequence to switch to a brighter color set. On such terminals, set_color white will result in a grey
font color, while set_color --bold white will result in a white font color.
Not all terminal emulators support all these features. This is not a bug in set_color but a missing feature in the terminal emulator.
set_color uses the terminfo database to look up how to change terminal colors on whatever terminal is in use. Some systems have old and
incomplete terminfo databases, and may lack color information for terminals that support it. Download and install the latest version of
ncurses and recompile fish against it in order to fix this issue.
Version 1.23.1 Sun Jan 8 2012 set_color(1)