head command with make in bash shell
Hello,
Could anyone tell me how I can see the first part of the "make" command
log using "head" in a bash shell?!
i.e. what is the bash equivalent of the csh " make | & head " command?
thanks,
Ali
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo [at] vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
Re: head command with make in bash shell
Hi,
Try saving the output to a file then analyzing it.
make &> output.txt; head output.txt
On Sunday 28 May 2006 06:13, ali shahrokni wrote:
> Hello,
> Could anyone tell me how I can see the first part of the "make" command
> log using "head" in a bash shell?!
> i.e. what is the bash equivalent of the csh " make | & head " command?
> thanks,
> Ali
> -
> To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
> the body of a message to majordomo [at] vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.linux-learn.org/faqs
--
Thanks,
Eric
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo [at] vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs