Below is a typo for a C++ include guard. Both should read _MYFILE_H_.
#ifndef _MYFILE_H_
#define _MYFLIE_H_
How would you suggest searching a bunch of header files for a typo like this using GNU coreutils (e.g. grep, awk)?
|
Below is a typo for a C++ include guard. Both should read
How would you suggest searching a bunch of header files for a typo like this using GNU coreutils (e.g. grep, awk)? |
||||
| show 4 more comments |
|
You could use
There may be more clever ways to do this, but this is (to me) quite clear and easy. Note: This will show "false positives" if the file contains something like
|
|||||||
|
|
Specifically, the language of all strings of the form
Where Sorry for the negative result, but I hope this helps! |
|||
|
|
|
Multiple sed commands could do the trick.
Problem with that implementation is, that there may be no copyright header above the guard. And I'm quite sure that this could be written more concise. |
|||
|
|
_MYFILE_H_.<g>Names that begin with an underscore followed by a capital letter and names that contain two consecutive underscores are reserved to the implementation. Don't use them. – Pete Becker Feb 21 at 21:01