写了一段shell脚本,用来清除c代码中的注释,不敢独享,分享给大伙。
运行示例:Run this script as follows:
1,c代码示例
file.c:
#include<stdio.h>
2,shell脚本,其实是sed命令的一个例子
#!/bin/sed -f
# sed 清除c程序中的注释 # # if no /* get next /\/\*/!b # here we've got an /*, append lines until get the corresponding # */ :x /\*\//!{ N bx } # delete /*...*/ s/\/\*.*\*\/// |