On Sun, Dec 05, 1999 at 09:43:01PM +0000, John Marr wrote:
> Ray Olszewski wrote:
>
> Actually, my bash reply is:
>
> [root@master modules]# "gcc -DMODULE -D__KERNEL__ -Wall -Wstrict-prototypes
> -O6 -c tulip.c `[ -f
> usr/include/linux/modversions.h ] && echo -DMODVERSIONS`": command not found
>
> I am wondering if I screwed something up. Actually, thinking about all the
> stupid things I've done in the past I would tend to think that I have. Thanks
> for your suggestions. That was actually the first thing that I checked.
>
I'd vote for try it without the quotes around the whole thing.
[noop@reilly]$echo "main() {printf(\"Hello World\\n\");} > test.c
[noop@reilly]$"gcc -o test test.c"
bash: gcc -o test test.c: command not found
[noop@reilly]$gcc -o test test.c
[noop@reilly]$./test
Hello World
the quotes around the whole thing make bash think it is one command..
have fun
greg
--
this is not here