kiss: Add means of disabling find/replace in sources files

Any source starting with raw: will be used verbatim. This allows
one to disable the marker substitution for a given source.

Am open to suggestions for a different syntax to raw: though for
now it's fine.

See #242
This commit is contained in:
Dylan Araps 2021-07-20 08:29:31 +03:00
parent 04fc05aa88
commit bfee50bfbd
No known key found for this signature in database
GPG Key ID: 13295DAC2CF13B5C
1 changed files with 1 additions and 0 deletions

1
kiss
View File

@ -105,6 +105,7 @@ fnr() {
shift 1
while :; do case $_fnr-$# in
raw:*) _fnr=${_fnr##raw:}; break ;;
*"$1"*) _fnr=${_fnr%"$1"*}${2}${_fnr##*"$1"} ;;
*-2) break ;;
*) shift 2