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.

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.

share|improve this question

4 Answers

watch -n 1 <your-command>

From the watch(1) man page:

Execute a program periodically, showing output full screen

share|improve this answer
Thanks, totally forgot about watch. This is doing exactly what I need, thanks. – viGeek Dec 6 '11 at 18:55

You need to use curses for this. Here's one detailed article about curses usage.

share|improve this answer

You can use "while true / clear"-loops to have constantly updated screen like:

#!/bin/bash
while true
do
clear
echo "your output"
uptime
sleep 5
done
share|improve this answer

You can use terminal escape codes. You can print them with echo -ne (drop the n if you want the newline afterwards). The escape character is \033. This will clear the screen and put your cursor at the top left:

echo -ne "\033[2J\033[f"

There are cursor-positioning codes, color codes, formatting, etc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.