How to write a shell script to connect to another server?


 
Thread Tools Search this Thread
Top Forums Programming How to write a shell script to connect to another server?
# 8  
Old 04-22-2010
I was a touch annoyed since you seemed to be repeating the same questions hoping for different answers. I also suspect your approach to the problem won't work, but can't be sure until I can be completely sure what it actually is.
Quote:
Originally Posted by Angelo
If my friends have Windows networks, does the command scp works fine?
If you can ssh to a system, you can scp to it. It connects to the same service.

If you're asking if there's a windows version of scp, it's available here as pscp.

Last edited by Corona688; 04-22-2010 at 06:31 PM..
# 9  
Old 04-22-2010
Quote:
Originally Posted by Angelo
If my friends have Windows networks, does the command scp works fine?
It won't work out of the box; You need additional software like cygwin or SFU (just to mention a few).

Could you post your script without all those gaudy asterisks and strange echoes?
# 10  
Old 04-25-2010
I thank both Corona and Verde for the replies.

Corona, I need some more information.

1.First I have to install SSH
2.Afterwards I have to install SCP

I hope the above is correct. Please tell me if I am wrong.

Even my friends have to do the same thing. Otherwise they can't copy files and folders from my system. Please tell me if I am wrong.
I don't know very much about these things. I am here to learn.
…................................................................................................... ............................
Verde wants me to repost the script. I will do so when time permits.
Time is the biggest enemy for me. I work and study. I am studying a course on server virtualization. On top of this I go to the gym 5 times a week for circuit-training. I come home everyday around 10 o'clock. No time at all!

It seems Verde has some experience of Windows environment too. I remember cygwin. I had it some years ago. It mimics the Linux command line.

So both cygwin and pscp are necessary for Windows clients.
I run Linux. If my friends have Microsoft, they must install both cygwin and pscp.
Please tell me if I am wrong.
# 11  
Old 04-28-2010
Quote:
Originally Posted by Angelo
I thank both Corona and Verde for the replies.

Corona, I need some more information.

1.First I have to install SSH
2.Afterwards I have to install SCP

I hope the above is correct. Please tell me if I am wrong.
I don't know exactly what you're doing, so I can't say.
Quote:
Even my friends have to do the same thing. Otherwise they can't copy files and folders from my system. Please tell me if I am wrong.
What is your system? You were writing a script for ssh before. If your system lets people ssh to it, it lets people scp to it.

If you're scp-ing from Windows computers to UNIX ones, all you need is pscp. pscp is a standalone program. It doesn't even need to be installed, it's a sole executable file.
# 12  
Old 04-29-2010
hi
one doubt inthe above script if [ -e "$to" ]. what is the option -e used for ?
# 13  
Old 04-29-2010
Quote:
Originally Posted by mani_isha
hi
one doubt inthe above script if [ -e "$to" ]. what is the option -e used for ?
Evaluates to TRUE if file $to exists.

Introduction to if

Smilie

Quote:
Originally Posted by Angelo
Please tell me if I am wrong.
I still do not get exactly what you want to do.

As corona already posted, either you can use pscp to connect from Windows to Linux (from a cmd prompt) or WinSCP if you want a GUI.

Last edited by verdepollo; 04-29-2010 at 02:48 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Not able to connect to Oracle server from shell script

Hi, I am facing an issue in connecting to database from Linux shell script. Here is my code export ORACLE_BASE=xxx export ORACLE_SID=xxx export ORACLE_HOME=xxxx DB_PATH=xxx/'yyy@yy' UserId=`sqlplus -s $DB_PATH <<EOF set head off feedback off select max(USER_ID)+1 from USERS;... (6 Replies)
Discussion started by: yuvi
6 Replies

2. UNIX for Advanced & Expert Users

How to write if condition in shell script for application server?

Hi all, I have a code to create folder in application server through shell script and i want to create if conditional based folder folder=$HOME/test/sample/whatever if ; then echo "$folder already exists, not created." else mkdir -p "$folder" > /dev/null 2>&1 ... (7 Replies)
Discussion started by: Boost
7 Replies

3. Shell Programming and Scripting

Shell script to connect from one server to other

Dear Experts, I am new to the shell scripting. I am looking for a shell script to connect to one Unix/Linux server1 to other Unix/Linux server2 and trigger a SAP Event in that server2 (Which will trigger a job in SAP). Is this possible to connect from one server to the other server securely... (7 Replies)
Discussion started by: Venu V Reddy
7 Replies

4. Shell Programming and Scripting

Connect (SSH) to Windows server via Linux server through a script and passing command.. but failing

I am trying to connect to Windows server via Linux server through a script and run two commands " cd and ls " But its giving me error saying " could not start the program" followed by the command name i specify e g : "cd" i am trying in this manner " ssh username@servername "cd... (5 Replies)
Discussion started by: sunil seelam
5 Replies

5. Shell Programming and Scripting

connect to SQL server from shell script

Hi all, I need to connect to SQL server from shell script. Then need to execute queries from shell script as below 1. To compare values of an array with SQL table's entry. I am using solaris-5.1 to run shell script and want to connect to SQL-5.1 which is installed on SantOS. Kindly let... (3 Replies)
Discussion started by: amitbhelave
3 Replies

6. Solaris

connect to SQL server from shell script

Hi all, I need to connect to SQL server from shell script. Then need to execute queries from shell script as below 1. To compare values of an array with SQL table's entry. Kindly let me know on how to do this Thanks, Double post. Continue here (0 Replies)
Discussion started by: amitbhelave
0 Replies

7. Shell Programming and Scripting

connect to SQL server from shell script

Hi all, I need to connect to SQL server from shell script. Then need to execute queries from shell script. Kindly let me know on how to do this Thanks, Ananthi.U (1 Reply)
Discussion started by: ananthi_ku
1 Replies

8. Shell Programming and Scripting

Shell Script to connect to another server and copying files

Hi Unix Gurus, I have a doubt reg file transfer. I have used the below script to connect to another server and find files having modified for the last 24 hours and have to move the file to another server. While i tried i am getting authentication failed, destination path not found issue. ... (2 Replies)
Discussion started by: incepted
2 Replies

9. Shell Programming and Scripting

How to write a shell script for rsync to remote server?

Hello, Can you help me to write a shell script for rsync a folder from my server to remote server ? i do this in ssh by this command : rsync -avz -e ssh /copy/me/ login@serverip:/where/to i want have a shell script that do this command. and you know that this command ask remote... (0 Replies)
Discussion started by: Desperados
0 Replies

10. Shell Programming and Scripting

shell script for how to connect to a remote server by using ssh

i want to connect to a remote server through ssh. i have to also provide password within that script. after connecting to the remote server i want to do some operations like grep,cd etc can u pls help me to wite a script. Thanks (1 Reply)
Discussion started by: millan
1 Replies
Login or Register to Ask a Question