How do I look at the source code for a command?
Find out which package it’s in
Find out which package it’s in
I am trying to remove comments from a file which may be in any part of a line and span multiple lines. struct my_struct{ field1; field2; /** comment 1 */ field3; /* comment 2 */ } struct_name; I need to get struct my_struct{ field1; field2; field3; } struct_name; I tried using grep -o '[^/*]*[^*/]' to … Read more
if I want to count the lines of code, the trivial thing is