diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-05-06 17:21:47 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-05-06 17:21:47 -0400 |
commit | 008ebd1262268cf1c9a4bbdc0bf78d5c11cd5b1d (patch) | |
tree | 2beee75883d125917148ea4e7b29084642fb3b4f /src/main.c | |
parent | 9664dec490808a834ca009ac293eca9ef25a6e8e (diff) | |
download | cleanpath-008ebd1262268cf1c9a4bbdc0bf78d5c11cd5b1d.tar.gz |
Disable regex on windows
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -52,7 +52,7 @@ static void show_usage() { printf(" --version -V Displays the program's version\n"); printf(" --exact -e Filter when pattern is an exact match (default)\n"); printf(" --loose -l Filter when any part of the pattern matches\n"); - printf(" --regex -r Filter matches with (Extended) Regular Expressions\n"); + printf(" --regex -r Filter matches with (Extended) Regular Expressions " CLEANPATH_MSG_NOAVAIL "\n"); printf(" --sep [str] -s Use custom path separator (default: ':')\n"); printf(" --env [str] -E Use custom environment variable (default: PATH)\n"); } |