How we can use plink?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How we can use plink?
# 1  
Old 03-16-2008
How we can use plink?

Hi,

How we can use use plink to access unix system using Dos.

Could someone send me the commands that can be use in Batch file to call unix system using plink utility.

Thanks in advance
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Windows & DOS: Issues & Discussions

Plink is not working

Hi, I am executing below command from Windows run and it is not working "C:\Program Files (x86)\PuTTY\pageant.exe" "D:\abc_key.ppk" -c "C:\Program Files (x86)\PuTTY\plink.exe" -ssh 172.19.11.134 sh ~/touchfile.sh I have created a .ppk file in the directory specified The plink window... (2 Replies)
Discussion started by: NP1
2 Replies

2. Windows & DOS: Issues & Discussions

Plink wait problem

Hi, I have run into a problem to which i can't seem to find any solution, posting here is my last resort. Problem: I am using plink to access my router and run a few configuration commands. When in enter configurations mode, instead of sending next command plink keeps on waiting for manual... (7 Replies)
Discussion started by: zaainabbas
7 Replies

3. Shell Programming and Scripting

Using plink with sudo access

I have similar issue as mentioned in 167174-how-run-script-using-batch-file.html It works good, but the control is not coming back to source i tried adding exit to remote script. Thanks, Suresh (0 Replies)
Discussion started by: snsuresh
0 Replies

4. Shell Programming and Scripting

Need help on Plink

Hi All, Iam a newbie to the plink and need your assistance. I have referred some posts but it doesn't helps me much. I have two steps to do. 1. I have a config file which has a list of servers,username and password. 2. I have a shell script in windows which accepts arguments and need to... (0 Replies)
Discussion started by: cskumar
0 Replies

5. Shell Programming and Scripting

PLINK help

Hi Plink users, I am very new in GWAS and decided to use PLINK for this. But I am struggling with file formats. I have one exome data with 200000 SNPs in it. But it is in .txt format. But all the necessary fields are there in different columns. Can you please suggest me how I can create the... (5 Replies)
Discussion started by: smitra
5 Replies

6. Shell Programming and Scripting

plink truncating commands

I'm using plink.exe on WinXP to run some commands on Z/OS BASH. My commands are interspersed with echo commands so that I can parse the output and work out what is where. The first hundred or so commands run fine, but then one of them gets truncated. For example: Input: echo :end_logdetail:... (6 Replies)
Discussion started by: PhilHibbs
6 Replies

7. AIX

plink shutdown

Hi, I'm testing out this plink script - which will be executed to shutdown multiple LPARs. This consists from: plink -i /path/ssh/cert/ root@host shutdown -F plink -i /path/ssh/cert/ root@host2 shutdown -F The commands gets executed, however it stops on one host, and does not move... (6 Replies)
Discussion started by: ollie01
6 Replies

8. Shell Programming and Scripting

Putty / Plink help

Im trying C:\Program Files\PUTTY\plink.exe mysite.net -l username -pw mypassword -m restart.sh But the login / password are never sent. If I remove the -m restart.sh it will login I need the command inside restart.sh issued after the login password is completed. THanks (6 Replies)
Discussion started by: Greystone
6 Replies

9. Shell Programming and Scripting

Error with Plink

Hello. I have a TCL script that logs in to a server using SSH. As SSH isn't available in windows,I used Plink to do the job.The script works fine on my PC and 2 of my friend's PC. However, on one PC, I get the following error message: "'D:\scripts\plink.exe' is not a Win32 Console... (1 Reply)
Discussion started by: plasmalightwave
1 Replies

10. Shell Programming and Scripting

plink and shell script

This is my shell script... test.sh DIRECTORY=/XYZ/PQR if ; then echo "In test.." else echo "lno.." fi when i run this script through a putty its output is: ./test.sh: line 2: [: too many arguments lno.. But when i run the same script using plink its running fine and its... (5 Replies)
Discussion started by: praveen.1
5 Replies
Login or Register to Ask a Question
Net::CLI::Interact::Transport(3pm)			User Contributed Perl Documentation			Net::CLI::Interact::Transport(3pm)

NAME
Net::CLI::Interact::Transport - Spawns an Interactive CLI Session VERSION
version 1.121640 DESCRIPTION
This module provides a generic cross-platform interface with the purpose of interacting with a command line interface. On Windows the IPC::Run module is used and on Unix, Net::Telnet. In both cases, a program such as openssh is started and methods provided to send and receive data from the interactive session. You should not use this class directly, but instead inherit from it in specific Transport that will set the application command line name, and marshall any runtime options. The OS platform is detected automatically. INTERFACE
init This method must be called before any other, to bootstrap the application wrapper module (IPC::Run or Net::Telnet). However, via Net::CLI::Interact's "cmd", "match" or "find_prompt" it will be called for you automatically. Two attributes of the specific loaded Transport are used. First the Application set in "app" is of course required, plus the options in the Transport's "runtime_options" are retrieved, if set, and passed as command line arguments to the Application. connect_ready Returns True if "connect" has been called successfully, otherwise returns False. disconnect Undefines the application wrapper flushes any output data buffer such that the next call to "cmd" or "macro" will cause a new connection to be made. Useful if you intentionally timeout a command and end up with junk in the output buffer. do_action When passed a Net::CLI::Interact::Action instance, will execute the contained instruction on the connected CLI. This might be a command to "send", or a regular expression to "match" in the output. Features of the commands and prompts are supported, such as Continuation matching (and slurping), and sending without an output record separator. On failing to succeed with a Match, the module will time-out (see "timeout", below) and raise an exception. Output returned after issuing a command is stored within the Match Action's "response" and "response_stash" slots by this method, with the latter then marshalled into the correct "send" Action by the ActionSet. put( @data ) Items in @data are joined together by an empty string and sent as input to the connected program's interactive session. pump Attempts to retrieve pending output from the connected program's interactive session. Returns true if there is new data available in the buffer, else will time-out and raise a Perl exception. See "buffer" and "timeout". flush Empties the buffer used for response data returned from the connected CLI, and returns that data as a single text string (possibly with embedded newlines). timeout( $seconds? ) When "do_action" is polling for response data matching a regular expression Action, it will eventually time-out and throw an exception if nothing matches and no more data arrives. The number of seconds to wait is set via this method, which will also return the current value of "timeout". The default value is 10 seconds. irs_re Returns the Regular Expression reference used to split lines of reponse from the connected device. In the end, you will only receive data from this module separated by the "ors" value (by default a newline character). The "irs_re" is used internally by the module and is: qr/(?:1512|15|12)/ # i.e. CRLF or CR or LF ors Line separator character(s) appended to a command sent to the connected CLI. This defaults to a newline on the application's platform. logger Slot for storing a reference to the application's Logger object. is_win32 Returns true if the current platform is Windows. Can be called as either a class or instance method. app Location and name of the program used to establish an interactive CLI session. On Unix platforms this will be "ssh" (openssh), "telnet", or "cu" (serial line). On Windows this must be the "plink.exe" program. connect_options Slot for storing a set of options for the specific loaded Transport, passed by the user of Net::CLI::Interact as a hash ref. Do not access this directly, but instead use "runtime_options" from the specific Transport class. wrapper Slot for storing the application wrapper instance (IPC::Run or Net::Telnet). Do not mess with this unless you know what you are doing. buffer After "pump" returns successfully, the output most recently received is stored in this slot. Do not access this directly, but instead use the "flush" method. stash During long sections of output, this slot allows more efficient detection of matches. Older data is placed here, and only the most recent line of data is stored in the "buffer". That's why "flush" is the only way to ensure you get all the output data in one go. AUTHOR
Oliver Gorwits <oliver@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Oliver Gorwits. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-06-12 Net::CLI::Interact::Transport(3pm)