From 76d0d7a1ec778155cc323e4cf86fb8274990f8c3 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Wed, 5 Jul 2023 07:24:55 -0500 Subject: [PATCH] Commit 891c5520f493 interlaced -e and -f in command line order, but help text wasn't updated. --- toys/posix/sed.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toys/posix/sed.c b/toys/posix/sed.c index 0de90633..a2469fa7 100644 --- a/toys/posix/sed.c +++ b/toys/posix/sed.c @@ -42,8 +42,8 @@ config SED -z Use \0 rather than \n as input line separator A SCRIPT is one or more COMMANDs separated by newlines or semicolons. - All -e SCRIPTs are combined as if separated by newlines, followed by all -f - SCRIPT_FILEs. If no -e or -f then first argument is the SCRIPT. + All -e SCRIPTs and -f SCRIPT_FILE contents are combined in order as if + separated by newlines. If no -e or -f then first argument is the SCRIPT. COMMANDs apply to every line unless prefixed with an ADDRESS of the form: -- 2.39.2