Last active
August 29, 2015 14:13
-
-
Save aeakett/955187a7a4145ae81456 to your computer and use it in GitHub Desktop.
Find duplicate IDs in an HTML file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
grep -Ho 'id="[^"]*"' <FILE NAME GOES HERE>|sort|uniq -d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thank you this is actually exactly what is looking for