Automate Execution of Commands on Remote Linux Server/s using Linux-Automator tool
Linux-Automator is a terminal based tool which uses SSH to connect remote Linux server. You can pass the list of commands from text file and all commands will be executed on remote Linux server in a sequential manner. This will display the execution on terminal. You can download the tool using this link . How to call Linux-Automator Server UserID Password Command_file Pause_time Server - Remote Linux server name or IP UserID - Login user name Password - Password for UserID Command_file - Command file name with complete path Pause_time - Time in seconds during which it checks if anything gets printed on the screen, if nothing then it sends the next command. This is optional. Default value is 2 seconds. Example Linux-Automator LinuxServer1 test password@123 "E:\Command\commands.txt" 5 Sequential Run on same Terminal You can call the Linux-Automator from Batch file. You can use below script for your reference to execute the commands on serve...