Questions tagged [stty]

"stty" command sets the options of terminal (tty).

The stty command sets certain I/O options for the device that is the current standard input. This command writes output to the device that is the current standard output.

Source: man stty

109 questions
10
votes
4 answers

STTY: How can I set rows/columns to its supported maximum?

I would like some 83(cols)x40(rows) size on my TTY, so: xubuntu@xubuntu:~$ stty size 30 90 xubuntu@xubuntu:~$ stty cols 83 rows 40 stty: standard input: Invalid argument xubuntu@xubuntu:~$ stty size 30 83 As can be seen in my example, cols=40 is…
1
vote
1 answer

How to enable/disable stty settings?

I'm on linux using bash with GNOME Terminal. I used the command stty -ixon and then I checked if ctrl-s was sending XOFF and ctrl-q was sending XON : they weren't. The problem is that by using stty -ixoff I can't re-enable the functions that these…
sanslol
  • 11