Difference between revisions of "Automating Tasks with SSH"

From docwiki
Jump to: navigation, search
(Created page with "Category:LinuxLV Category:SSH == Motivation == Besides interactive login, SSH can also be used to automate thing by directly executing remote commands and also conne...")
 
Line 4: Line 4:
   
 
Besides interactive login, SSH can also be used to automate thing by directly executing remote commands and also connecting STDIN and STDOUT to transfer date.
 
Besides interactive login, SSH can also be used to automate thing by directly executing remote commands and also connecting STDIN and STDOUT to transfer date.
  +
  +
To understand the following examples, make sure you know about [[Redirecting Input and Output with some Simple Commands|Redirecting]] and [[Concatenating Commands with Pipes and Substitution|Piping]] input and output of commands.
   
   

Revision as of 16:50, 23 March 2020


Motivation

Besides interactive login, SSH can also be used to automate thing by directly executing remote commands and also connecting STDIN and STDOUT to transfer date.

To understand the following examples, make sure you know about Redirecting and Piping input and output of commands.


Executing a remote command