Skip to main content

How to's

Example: exclude directories whose names start with a dot (.) from the search.

orang find --include-directory "^\." negative
orang find -i "^\." e

How to pass option value that starts with dash (-)

The command-line parser does not accept option values that start with a dash. See this issue for details. As a workaround, escape the dash or use the -- separator.

orang find --content "\-" --replacement -- "-"
orang find -c "\-" -r -- "-"