写了一段shell脚本,用来清除c代码中的注释,不敢独享,分享给大伙。
运行示例:Run this script as follows:
cat file.c | ./script.sh
1,c代码示例
file.c:
#include<stdio.h>
/* This is a test program
* Version 1.0
* */
int main(){
printf("This is a test");
/* now exit */
}
Sample output:
#include<stdio.h>
int main(){
printf("This is a test");
}
2,shell脚本,其实是sed命令的一个例子
您可能感兴趣的文章:
shell去掉linux配置文件的注释行
sed 去除shell中注释
去除文件内容中的注释与空行的命令
sed清除注释
Bash Shell 注释多行