repo.or.cz
/
beagle.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2006-02-27 Gabor Kelemen <kelemeng@gnome.hu>
[beagle.git]
/
tools
/
beagle-status
blob
a063468a3f2bf1c52dd8fc89c2d8ec45080f9fda
1
#!/bin/sh
2
3
if
[
-x
"./beagle-info"
];
then
4
CMD
=
"./beagle-info"
5
else
6
CMD
=
"beagle-info"
7
fi
8
9
while
[
1
];
do
10
str
=
`
$CMD
--status | head -n 20`
11
clear
12
echo
"
$str
"
13
# beagle-info causes a CPU spike, keep the hammering low
14
sleep
5
15
done