Mark Hobley wrote:
[...]
> 
> The checkbashisms script does not support redirection of its output to a
> file. This limits its usefulness for auditing source trees, where many
> bashisms may be present.
> 
>  checkbashisms * > bashisms.lst
> 
> The output goes to the screen and is not redirected to the file.
> 

Sure, that's because you need to redirect stderr to the file, as warnings
are written to, stressing, stderr not stdout.

So, what you want is:

checkbashisms * 2> bashisms.lst

Cheers,
-- 
Raphael Geissert - Debian Maintainer
www.debian.org - get.debian.net





-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to