Page 1 of 1

How do I find this?

Posted: Sat Oct 27, 2007 12:39 am
by alex.barylski
I am using the following Linux command to attempt to locate some language codes in a application:

Code: Select all

grep --recursive -n '%%[A-Z_]%%' /opt/lampp/htdocs/*
The format of the language code is something like %%THIS_IS_A_LANGUAGE_CODE%%

Whats wrong with the regex above I don't seem to getting anything. :(

Posted: Sat Oct 27, 2007 1:05 am
by Benjamin

Code: Select all

grep --recursive -n '%%[A-Z_]+%%' /opt/lampp/htdocs/*