Add script to invoke kermit with a particular port and speed

This commit is contained in:
Jim Paris 2010-09-18 16:44:57 -04:00
parent 59aa0c93e1
commit 97ae5e0ba8

13
tools/run-kermit Executable file
View file

@ -0,0 +1,13 @@
#!/usr/bin/kermit +
echo "Opening \%1 at \%2 baud..."
set line \%1
if failure { echo "Couldn't open \%1" , exit }
set carrier-watch off
set flow-control none
set speed \%2
set serial 8n1
set key \127 \8
connect
quit