Open Jeevan666 opened 4 years ago
Oh no wonder it never worked, thank you for the tip! I was struggling a bit on doing that so I resorted to using sublime's regex search. I'll make sure to edit that :)
On Thu, Nov 5, 2020, 12:51 PM Jeevan666 notifications@github.com wrote:
When i use grep "nactf{[nac]{10}.{21}[ctf]{14}}" flag.txt as mentioned it doesn't shows the flag. But instead if we try grep -E "nactf{[nac]{10}.{21}[ctf]{14}}" flag.txt it works. Where -E is used for mentioning that we shld searching in a Regex manner.
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/JoshuEo/CTFs/issues/2, or unsubscribe https://github.com/notifications/unsubscribe-auth/APO23CATEE7JN6ELGNYXDNLSOLQ2PANCNFSM4TLVVP3Q .
When i use grep "nactf{[nac]{10}.{21}[ctf]{14}}" flag.txt as mentioned it doesn't shows the flag. But instead if we try grep -E "nactf{[nac]{10}.{21}[ctf]{14}}" flag.txt it works. Where -E is used for mentioning that we shld search in a Regex manner.