当前位置: 技术问答>linux和unix
[菜鸟问题]gcc编译过后生成的文件
来源: 互联网 发布时间:2015-11-24
本文导语: $ vi HelloWorld.c /*helloworld.c*/ #include int main(int argc,char *argv[]) { printf("Hello Worldn"); return (0); } :wq $ gcc HelloWorld.c -o hell $ ls hell $ hell the command hell not find. 这是怎么回事呢?我看书上都是...
$ vi HelloWorld.c
/*helloworld.c*/
#include
int main(int argc,char *argv[])
{
printf("Hello Worldn");
return (0);
}
:wq
$ gcc HelloWorld.c -o hell
$ ls
hell
$ hell
the command hell not find.
这是怎么回事呢?我看书上都是这么写的。
/*helloworld.c*/
#include
int main(int argc,char *argv[])
{
printf("Hello Worldn");
return (0);
}
:wq
$ gcc HelloWorld.c -o hell
$ ls
hell
$ hell
the command hell not find.
这是怎么回事呢?我看书上都是这么写的。
|
./hello
|
$ ./hell
$ hell使用的路径是默认的路径,但linux下默认的路径不是$HOME,好象是/usr
要使用本目录下的就要用成 ./hell
$ hell使用的路径是默认的路径,但linux下默认的路径不是$HOME,好象是/usr
要使用本目录下的就要用成 ./hell