mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-31 03:41:48 +00:00
18 lines
401 B
Plaintext
18 lines
401 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# picocom
|
|
|
|
> Minimal program to emulate serial consoles.
|
|
> More information: <https://manned.org/picocom>.
|
|
|
|
- Connect to a serial console with a specified baud rate:
|
|
|
|
`picocom {{/dev/ttyXYZ}} --baud {{baud_rate}}`
|
|
|
|
- Map special characters (e.g. `LF` to `CRLF`):
|
|
|
|
`picocom {{/dev/ttyXYZ}} --imap {{lfcrlf}}`
|