On Mon, Mar 13, 2000 at 01:41:48AM +0000, you [Alan Cox] claimed:
> > alias ls='ls -F'
> > . ver_linux
> >
>
> alias make='echo banana'
> make bzImage
>
> That doesnt work either ..
>
> Perhaps we should use /bin/ls ?
echo "echo banana" > `which make`
make bzImage
;)
But is there any reason not to replace
uname -a
with
if [ -f /proc/version ]; then
cat /proc/version
else
uname -a
fi
?
It shouldn't break anything?
-- v --
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/
This archive was generated by hypermail 2b29 : Wed Mar 15 2000 - 21:00:23 EST