diff options
| author | Cy Schubert <cy@FreeBSD.org> | 2022-01-05 19:24:29 +0000 |
|---|---|---|
| committer | Cy Schubert <cy@FreeBSD.org> | 2022-01-05 19:24:29 +0000 |
| commit | 9b0b0740be1f3d3751d366f3bb2952090a9dc505 (patch) | |
| tree | 596fd97301bf8c0581936cf70bf5f2d58bdb6b80 /tool/replace.tcl | |
| parent | 0511e356f5e2106928ee352ee974d1470c860a9a (diff) | |
Diffstat (limited to 'tool/replace.tcl')
| -rw-r--r-- | tool/replace.tcl | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tool/replace.tcl b/tool/replace.tcl new file mode 100644 index 000000000000..e87cb922f2a7 --- /dev/null +++ b/tool/replace.tcl @@ -0,0 +1,23 @@ +#!/usr/bin/tcl +# +# Replace string with another string -OR- include +# only lines successfully modified with a regular +# expression. +# +fconfigure stdout -translation binary -encoding binary +fconfigure stderr -translation binary -encoding binary +set mode [string tolower [lindex $argv 0]] +set from [lindex $argv 1] +set to [lindex $argv 2] +if {-1 == [lsearch -exact [list exact regsub include] $mode]} {exit 1} +if {[string length $from]==0} {exit 2} +while {![eof stdin]} { + set line [gets stdin] + if {[eof stdin]} break + switch -exact $mode { + exact {set line [string map [list $from $to] $line]} + regsub {regsub -all -- $from $line $to line} + include {if {[regsub -all -- $from $line $to line]==0} continue} + } + puts stdout $line +} |
