Noob here. Whats the difference between CLI and TUI? I thought navigating via a terminal in applications such as Ranger was CLI ๐ค
this post was submitted on 12 Jun 2024
29 points (100.0% liked)
Linux
5184 readers
157 users here now
A community for everything relating to the linux operating system
Also check out !linux_memes@programming.dev
Original icon base courtesy of lewing@isc.tamu.edu and The GIMP
founded 1 year ago
MODERATORS
CLI flow: run command, print output below
TUI flow: navigate and interact with a layout that updates in place
Thank you
Keep in mind these terms are not set in stone, the reason you are confused is because people don't use these terms consistently, not because you are wrong.
But
CLI command line interface, is often used as an umbrella term, including for TUI applications. The name comes from that you are typing commands.
TUI terminal user interface, is often used to describe CLI applications that draws menus in the terminal emulator, like ranger file manager.
Thank you