摘要: 到下面的地址去下载:http://vault.centos.org/6.5/updates/Source/SPackages/ 阅读全文
posted @ 2015-12-07 22:06 jawfeng 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 1. 下载 git clone https://github.com/doxygen/doxygen.git 2. 编译安装 cd doxygen mkdir build cd build cmake -G "Unix Makefiles" .. (cmake需要安装) make make inst 阅读全文
posted @ 2015-12-07 20:58 jawfeng 阅读(482) 评论(0) 推荐(0) 编辑
摘要: 1. 第一个程序: #!/usr/bin/perl print "hello world.\n"; 2. 第二个程序 #!/usr/bin/perl use 5.010; #告诉perl要使用5.010版本的新特性 say "hello world."; #与print效果一样,只是不需要“\n”即 阅读全文
posted @ 2015-12-07 20:45 jawfeng 阅读(774) 评论(0) 推荐(0) 编辑