I'm wondering if there is a method to have a bash script present data to the console and consistently update it. Much like the functionality of top, but in a more simple form.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
From the watch(1) man page:
|
|||
|
|
You need to use curses for this. Here's one detailed article about curses usage. |
|||
|
|
|
You can use "while true / clear"-loops to have constantly updated screen like:
|
||||
|
|
|
You can use terminal escape codes. You can print them with
There are cursor-positioning codes, color codes, formatting, etc. |
|||
|
|
