Introduction
When working on a Linux server, there may be situations where you do not want commands typed into the terminal to be displayed on the screen. This can be useful when entering sensitive information, demonstrating commands in a shared environment, or performing administrative tasks where command visibility should be minimized.
Linux provides a simple way to temporarily disable command echoing using the stty command. In this article, we’ll explain how to hide commands entered in the shell and how to restore normal terminal behavior afterward.
Hiding Commands in the Shell
You can hide the commands entering in the shell by using stty command
stty -echo
Now all the commands that you type will be invisible. To disable this, you can use the command
stty echo
Conclusion
The stty -echo command provides a quick and simple way to hide commands and user input in a Linux shell. Whether you’re entering sensitive information or performing administrative tasks, this feature can help improve privacy during terminal sessions. When finished, simply run stty echo to restore normal command visibility.
If you require help, contact SupportPRO Server Admin
Partner with SupportPRO for 24/7 proactive cloud support that keeps your business secure, scalable, and ahead of the curve.

