On 28 July 2007, Kent Fredric wrote:

> try a plain old bash script and see if that works, and try this and
> see if it works:
>
> cat >> testrun.c
> #include <stdio.h>
> int main(int argc, int* argv)
> {
>   printf("helloworld");
> }
> ( press ctrl+d here )
>
> make testrun

Without writing a Makefile, make won't build the program. ;-)

You better try this:

gcc -o testrun testrun.c

Uwe

>
> ./testrun
>
> if that fails to do ./testrun, then i figgure the FS your on isn't
> execable. sorry. ^^
>
>
>
>
> --
> Kent
> ruby -e '[1, 2, 4, 7, 0, 9, 5, 8, 3, 10, 11, 6, 12, 13].each{|x|
> print "enNOSPicAMreil [EMAIL PROTECTED]"[(2*x)..(2*x+1)]}'



-- 
Jethro Tull: Maybe, I am not done yet!
-- 
[EMAIL PROTECTED] mailing list

Reply via email to