| Author |
How to write UNIX coding for SFTP
|
|
| cindell55 2006-02-23, 7:53 am |
| Hi there..
I want to write UNIX coding for SFTP...give me the clue
tq
| |
| Robert Bonomi 2006-02-26, 10:18 am |
| In article <1140685450.062911.71760@v46g2000cwv.googlegroups.com>,
cindell55 <cindell55@yahoo.com> wrote:
>Hi there..
>
>I want to write UNIX coding for SFTP...give me the clue
>
system(PATH_TO_SFTP_EXECUTABLE);
| |
| Bill Marcum 2006-02-26, 10:18 am |
| On 23 Feb 2006 01:04:10 -0800, cindell55
<cindell55@yahoo.com> wrote:
> Hi there..
>
> I want to write UNIX coding for SFTP...give me the clue
>
Give me the clue what you mean. Do you want to write scripts using
SFTP, or do you want to write your own sftp sever or client? Could you
use scp or rsync instead?
--
Necessity hath no law.
-- Oliver Cromwell
| |
| cindell55 2006-02-26, 10:18 am |
| Hi there,
TQ for messages..
Emm actually i want to transfer my files tru SFTP and i want to know
how to write down the UNIX coding.??
TQ
| |
| Barry Margolin 2006-02-26, 10:19 am |
| In article <1140748563.844825.165200@i40g2000cwc.googlegroups.com>,
"cindell55" <cindell55@yahoo.com> wrote:
> Hi there,
>
> TQ for messages..
>
> Emm actually i want to transfer my files tru SFTP and i want to know
> how to write down the UNIX coding.??
The problem with all your questions is that none of us recognize the
word "coding" in the way you're using it. It's not the word we normally
use in English for whatever you're talking about.
--
Barry Margolin, barmar@alum.mit.edu
Arlington, MA
*** PLEASE post questions in newsgroups, not directly to me ***
*** PLEASE don't copy me on replies, I'll read them in the group ***
| |
| Thobias Vakayil 2006-02-26, 10:19 am |
| cindell55 wrote:
>Hi there..
>
>I want to write UNIX coding for SFTP...give me the clue
>
>tq
>
>
>
#!/usr/bin/ksh
#usage : sftp.sh <ipaddress> <portno> <userid>
sftp -o port=$2 $3@$1<<EOF
get <filename>
quit
EOF
Regards,
Thobias Vakayil
|
|
|
|