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
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
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. |
|||
|
|
