Description of -e flag in manpage is deceptive
The -e
flag description in gnome-terminal.1
manpage begins with the following line:
--command, -e=COMMAND
This line would imply that =
can be used to pass the COMMAND
. This is not the case, COMMAND
must be separated by a space.
Here's a fix:
From 3df940de7142ace3c18268aa7b3df76abf0766a2 Mon Sep 17 00:00:00 2001
From: meator <meator.dev@gmail.com>
Date: Sat, 6 Jul 2024 19:45:37 +0200
Subject: [PATCH] man: Fix -e description
The manpage uses "--command, -e=COMMAND" to describe the flag.
-e=COMMAND does not work, COMMAND must be separated by a space.
---
man/gnome-terminal.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/man/gnome-terminal.xml b/man/gnome-terminal.xml
index 94f3cc58..0cd8d9ed 100644
--- a/man/gnome-terminal.xml
+++ b/man/gnome-terminal.xml
@@ -179,7 +179,7 @@
</listitem>
</varlistentry>
<varlistentry>
- <term><option>--command, -e=COMMAND</option></term>
+ <term><option>--command, -e COMMAND</option></term>
<listitem>
<para>
Split the argument to this option into a program and arguments
--
2.45.2