0

I need to write commands to a USB serial port to configure multiple devices, the commands are always the same so I type the same list of commands over and over again which is inefficient. I do this using PuTTY.

Is there a program similar to PuTTY which allows you to read commands from a text file or another method which I can send the same series of commands quickly?

MRB
  • 105
  • 1
  • 8
  • Does this answer your question? [Execute a command on device over serial connection with Plink](https://stackoverflow.com/questions/51643735/execute-a-command-on-device-over-serial-connection-with-plink) – Martin Prikryl Feb 23 '22 at 06:43

1 Answers1

0

PuTTY comes with console tool called Plink that's (contrary to PuTTY) intended for automation.

See this question for details how to use Plink to execute commands over serial connection:
Execute a command on device over serial connection with Plink

Martin Prikryl
  • 188,800
  • 56
  • 490
  • 992