1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 13:37:45 +00:00

find: Add the -regex and -iregex options

These options match a given regular expression against the whole file
path. `-iregex` is identical to `-regex` except it is case-insensitive.
This commit is contained in:
Tim Ledbetter 2023-08-27 16:46:31 +01:00 committed by Ali Mohammad Pur
parent 2a86bd8c91
commit 0a02c7a926
2 changed files with 34 additions and 0 deletions

View file

@ -92,6 +92,7 @@ target_link_libraries(disasm PRIVATE LibX86)
target_link_libraries(expr PRIVATE LibRegex)
target_link_libraries(fdtdump PRIVATE LibDeviceTree)
target_link_libraries(file PRIVATE LibGfx LibIPC LibArchive LibCompress LibAudio)
target_link_libraries(find PRIVATE LibRegex)
target_link_libraries(functrace PRIVATE LibDebug LibX86)
target_link_libraries(glsl-compiler PRIVATE LibGLSL)
target_link_libraries(gml-format PRIVATE LibGUI)