当前位置: 技术问答>linux和unix
Linux下的C语言编程
来源: 互联网 发布时间:2016-04-24
本文导语: 在Linux编写了C语言程序 可以用make命令生成文件 但是不可以执行 错误提示如下: [root@localhost long]# make yangFork cc yangFork.c -o yangFork [root@localhost long]# yangFork bash: yangFork: command not found [root@localhost long]...
在Linux编写了C语言程序 可以用make命令生成文件 但是不可以执行 错误提示如下:
[root@localhost long]# make yangFork
cc yangFork.c -o yangFork
[root@localhost long]# yangFork
bash: yangFork: command not found
[root@localhost long]#
哪位高手能帮帮我阿
谢谢了阿
[root@localhost long]# make yangFork
cc yangFork.c -o yangFork
[root@localhost long]# yangFork
bash: yangFork: command not found
[root@localhost long]#
哪位高手能帮帮我阿
谢谢了阿
|
直接在 .bashrc 末尾加即可,上面少了一个 $
要想马上生效的话,可以重新打开一个 console
或者执行
或
不推荐这样加的原因,
一个是出于安全,
二是避免命令的冲突,比如自己编译了一个 test 程序,而系统有命令 test
你说用哪一个呢,由于是按照 PATH 进行搜索,很可能得到意想不到的结果
export PATH=$PATH:.
要想马上生效的话,可以重新打开一个 console
或者执行
source ~/.bashrc
或
. ~/.bashrc
不推荐这样加的原因,
一个是出于安全,
二是避免命令的冲突,比如自己编译了一个 test 程序,而系统有命令 test
你说用哪一个呢,由于是按照 PATH 进行搜索,很可能得到意想不到的结果