ned Command Examples

Like grep but with powerful replace capabilities. Unlike sed, as it isn't restricted to line oriented editing. More information: https://github.com/nevdelap/ned.

ned --ignore-case --recursive '{{^[dl]og}}' {{.}}

ned --colors '{{^[dl]og}}' {{.}}

ned --colors=never '{{^[dl]og}}' {{.}}

ned --recursive --exclude '{{*.htm}}' '{{^[dl]og}}' {{.}}

ned '{{dog}}' --replace '{{cat}}' {{.}}

ned '{{the ([a-z]+) dog and the ([a-z]+) dog}}' --replace '{{the $2 dog and the $1 dog}}' {{.}}

ned '{{([a-z]+) dog}}' --case-replacements --replace '{{\U$1\E! dog}}' --stdout {{.}}

ned '{{^[sb]ad}}' --replace '{{happy}}' --stdout {{.}}