点击(此处)折叠或打开
- /[:*:]/d
- /[:/:][:/:]/d
- /^$/d
TestMain类
点击(此处)折叠或打开
- package test;
- /*
- *====
- *====
- **/
- public class TestMain
- {
- //The main
- public static void main(String []args)
- {
- System.out.println("The main");
- }
- }
[root@localhost sed]# sed -f delcomment.sh TestMain.java
处理完之后:
点击(此处)折叠或打开
- package test;
- public class TestMain
- {
- public static void main(String []args)
- {
- System.out.println("The main");
- }
- }