From 4241babe12350ac4665859ecc5542bd91a068af8 Mon Sep 17 00:00:00 2001 From: Evan Platzer Date: Mon, 13 Nov 2023 14:23:07 -0500 Subject: [PATCH] Update README.md for new string literal arg (#281) The example for string literal mode mentions the new official argument (`-F` or `--fixed-strings`), but still uses the old, now undocumented `-s` argument. This is confusing for anyone who doesn't know the old syntax. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6e81400..5b7a9b0 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ Install through 1. **String-literal mode**. By default, expressions are treated as regex. Use `-F` or `--fixed-strings` to disable regex. ```sh - > echo 'lots((([]))) of special chars' | sd -s '((([])))' '' + > echo 'lots((([]))) of special chars' | sd -F '((([])))' '' lots of special chars ```