Basic Text Analysis with Command Line Tools in Linux | William J Turkel 这篇文章非常清楚的介绍了如何使用Linux的命令行工具进行文本分析,统计一本书中每个词出现的频率. 使用了如下的命令: wget file head tail cp ls less sed wc grep tr sort uniq 对于Windows用户,可以通过cygwin在Windows下安装linux的这些强大的命令.
Visual Studio命令行创建库文件lib OS:win7 旗舰版SP1 64位 编译器: VS 2013 express 的cl 建一个文件Static_Lib.h,源代码如下 #ifndef _STATIC_LIB_H_ #define _STATIC_LIB_H_ int Add ( int , int ); #endif 同一个文件夹下建一个文件Static_Lib.c,源代码如下 #include "Static_Lib.h" int Add (int a, int b