Re: Can I echo a header to the top of my console ?
From: Alan Connor (zzzzzz_at_xxx.yyy)
Date: 07/06/04
- Next message: RMH: "Re: shell command into an AWK Script"
- Previous message: Ted Timar: "Welcome to comp.unix.shell [Frequent posting]"
- Next in thread: Bill Marcum: "Re: Can I echo a header to the top of my console ?"
- Maybe reply: Bill Marcum: "Re: Can I echo a header to the top of my console ?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Tue, 06 Jul 2004 05:37:47 GMT
On Wed, 07 Jul 2004 17:27:02 +1200, vviirruuss<remove the echo> <vviirruuss<remove the echo>@clear.net.nz> wrote:
>
>
> Is it possible to specify a line of text at the top of the screen all
> the time while compiling (similar to penguin logo at linux bootup)?
>
> eg in a script to compile kernel
>
>
> make menuconfig
> make install
> echo "Now Installing" #to top of screen
> make modules
> echo "Now making Modules" #at top of screen
> make modules_install
> echo "Now Installing Modules" #at top of screen
>
> so that I know what make is doing since it can can take a long time on
> slower machine
>
>
> Also will the same apply for a terminal session in KDE ?
>
Should.
>
> thanx
>
> Grant
make menuconfig
make install
clear
echo "Now Installing" #to top of screen
make modules
clear
echo "Now making Modules" #at top of screen
make modules_install
clear
echo "Now Installing Modules" #at top of screen
You could add an
echo -e "\a"
after each clear so that it beeped right then.
A really good idea when you are doing something like this is
to use the utility script (man script) to keep a complete
record of the session to be checked out later.
Could save you a lot of work and frustration if the compile
does not go well.
AC
- Next message: RMH: "Re: shell command into an AWK Script"
- Previous message: Ted Timar: "Welcome to comp.unix.shell [Frequent posting]"
- Next in thread: Bill Marcum: "Re: Can I echo a header to the top of my console ?"
- Maybe reply: Bill Marcum: "Re: Can I echo a header to the top of my console ?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|