Created
January 14, 2020 16:23
-
-
Save jorgeas80/0ad8731483f8bf74939aa99847ede283 to your computer and use it in GitHub Desktop.
Useful regexp
This file contains 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
# Delete starting and ending blank spaces | |
s/^\s+|\s+$|\s+(?=\s) | |
# Delete duplicated lines, after sorting | |
^(.+)$\n^\1$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment