I have created two virtual serial ports on my ubuntu-notebook.
-> sudo socat /dev/ttyUSB7 /dev/ttyUSB8
Now I want to remove the serial ports and the connection between them.
I can't find the command to do that.
http://www.dest-unreach.org/socat/
Thanks!
/bin/rm -f /dev/ttyUSB7
, OR/bin/unlink /dev/ttyUSB7
. Else checkman socat
and see if there are any likely suspects under theSee Also
section. Good luck. – shellter