Hi,
I want to find files with foreign filenames in them, I'm using a regex to find such files with another tool but I don't know how to use them in find.
Here is what I use ( everything is in a file ):
Is there a way to find all files including these?
I want to find files with foreign filenames in them, I'm using a regex to find such files with another tool but I don't know how to use them in find.
Here is what I use ( everything is in a file ):
Code:
*\[DE\]* *\[JP\]* *\[RU\]* *\[FR\]* *\[KR\]* *\[PL\]* *\[AU\]* *\[IT\]* *[\p{Han}]* *[\p{Hiragana}]* *[\p{Katakana}]* *[\p{Cyrillic}]* *[\p{Hangul}]* *German* *Japanese* *Korean* *Spanish* *Italian* *Polish* *French*
Is there a way to find all files including these?