Linux uses stty to display and modify terminal line settings

Linux uses stty to display and modify terminal line settings

Sttty is a common command for changing and printing terminal settings under Linux.

1. Parameters:

1. Print terminal line settings

-a, --all Print all current settings in human-readable form; the -a parameter prints more detailed terminal information than the stty command alone.

-g, --save Print all current settings in a stty-readable format

-F, --file=DEVICE Open and use the specified device (DEVICE) instead of standard input (stdin)

--help show help and exit

--version display version and exit

2. Usage

1. stty size prints the number of rows and columns of the terminal

2. Disable lowercase output in the command line

stty olcuc #Open
stty -olcuc#Restore

3. Print the number of rows and columns of the terminal

stty size

4. Change the method of ctrl+D:

stty eof "string"

The system defaults to ctrl+D to indicate the end of the file, but this method can change it!

5. Shield display

stty -echo #Disable echo
stty echo #Open echo

Test Method:

stty -echo;read;stty echo;read

6. Ignore carriage return

stty igncr # enable
stty -igncr#Restore

7. Use it to set our serial port printing operation information.

stty -F /dev/ttyS0 speed 115200 cs8 -parenb -cstopb -echo

Explanation: Use stty to set the /dev/ttyS0 serial port, baud rate to 115200, data bit to cs8, parity bit to -parenb, stop bit to -cstopb, and -echo to disable terminal echo.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Commands to find domain IP address in Linux terminal (five methods)
  • Detailed explanation of how to use socks5 proxy for Linux terminal
  • Android's implementation method of executing shell scripts in the Linux terminal to directly print the log of the currently running app
  • How to use Shell script to get terminal width in Linux
  • Get a list of your top 10 most frequently used terminal commands in Linux
  • Two tools for splitting the screen in the Linux command line terminal
  • Two methods of terminal split screen under Linux (screen and tmux)
  • Detailed explanation of commonly used shortcut keys for Linux terminal command line
  • How to exit the Python command line in the Linux terminal

<<:  How to connect to MySQL remotely through Navicat

>>:  Understand the usage of Vue2.x and Vue3.x custom instructions and the principle of hook functions

Recommend

IIS7 IIS8 http automatically jumps to HTTPS (port 80 jumps to port 443)

IIS7 needs to confirm whether the "URL REWRI...

Detailed steps for completely uninstalling MySQL 5.7

This article mainly summarizes various problems o...

Detailed explanation of MySQL precompilation function

This article shares the MySQL precompilation func...

In-depth explanation of Vue multi-select list component

A Multi-Select is a UI element that lists all opt...

Detailed example of SpringBoot+nginx to achieve resource upload function

Recently, I have been learning to use nginx to pl...

Summary of several commonly used CentOS7 images based on Docker

Table of contents 1 Install Docker 2 Configuring ...

JavaScript to implement checkbox selection or cancellation

This article shares the specific code of JavaScri...

MySQL installation and configuration methods and precautions under Windows platform

2.1、msi installation package 2.1.1、Installation I...

Steps to install MySQL 5.7.10 on Windows server 2008 r2

Install using the MSI installation package Downlo...

MySQL 5.7.17 latest installation tutorial with pictures and text

mysql-5.7.17-winx64 is the latest version of MySQ...

JavaScript gets the scroll bar position and slides the page to the anchor point

Preface This article records a problem I encounte...