You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: en-US/B.xml
+10-2Lines changed: 10 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -67,13 +67,22 @@
67
67
</para>
68
68
69
69
</listitem>
70
+
</varlistentry>
71
+
<varlistentryid="backwards">
72
+
<term>backwards</term>
73
+
<listitem>
74
+
<para>
75
+
Avoid using "backwards" unless you are stating that something has "backwards compatibility."
76
+
</para>
77
+
78
+
</listitem>
70
79
71
80
</varlistentry>
72
81
<varlistentryid="backwards-compatible">
73
82
<term>backwards compatible</term>
74
83
<listitem>
75
84
<para>
76
-
Do not use. Instead, use "compatible with earlier versions." See also <xreflinkend="forwards-compatible" />.
85
+
Correct. Use to refer to something that is compatible with older equipment or previous versions of software. See also <xreflinkend="forwards-compatible" />.
Copy file name to clipboardExpand all lines: en-US/Design.xml
+75-16Lines changed: 75 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -120,9 +120,30 @@
120
120
121
121
</section>
122
122
<sectionid="documenting-command-syntax">
123
-
<title>Documenting Command Syntax</title>
123
+
<title>Documenting Command Terminology and Syntax</title>
124
+
<para>
125
+
Sufficient variation exists in the terminology used to describe commands, options, arguments, and so on that only general advice is provided here.
126
+
</para>
127
+
<para>
128
+
When referring to the command line as specified by Bash and POSIX, follow the terminology that the software uses.
129
+
Never use "flag" when referring to command-line options in POSIX, even though Microsoft often uses the term "flag" when referring to single-character options in Microsoft Windows.
130
+
</para>
131
+
<para>
132
+
The following extract from <command>info libc</command> is of particular interest here:
133
+
</para>
134
+
<blockquote>
135
+
<para>
136
+
"POSIX recommends these conventions for command line arguments. [...] Arguments are options if they begin with a hyphen delimiter (‘-’). Multiple options may follow a hyphen delimiter in a single token if the options do not take arguments. Thus, ‘-abc’ is equivalent to ‘-a -b -c’. [...] Certain options require an argument. For example, the ‘-o’ option of the ‘ld’ command requires an argument—an output file name." and so on.
137
+
</para>
138
+
<para>
139
+
See <command>info libc argument syntax</command> for the full discussion.
140
+
</para>
141
+
</blockquote>
142
+
<para>
143
+
See <command>info bash</command> and the <citetitle>Computer Interfaces</citetitle> chapter of <citetitle>The IBM Style Guide</citetitle> for further guidance.
144
+
</para>
124
145
<para>
125
-
See the <citetitle>Computer Interfaces</citetitle> chapter of <citetitle>The IBM Style Guide</citetitle> for initial guidance. The following examples are intended to highlight correct usage.
146
+
The following examples are intended to highlight correct usage.
The optional user name, indicated by brackets ([]), followed by the host name and path to the repository. All aspects of this component must be replaced with valid values.
186
+
The optional user name, indicated by brackets ([]), followed by the host name and path to the repository.
187
+
All aspects of this component must be replaced with valid values.
The optional directory into which the repository will be cloned. This must be replaced with a valid value, or omitted.
197
+
The optional directory into which the repository will be cloned.
198
+
This must be replaced with a valid value, or omitted.
175
199
</para>
176
200
177
201
</listitem>
@@ -236,9 +260,12 @@
236
260
Avoid using the <option>--force (-f)</option> and <option>--assumeyes (-y)</option> options on most commands, especially when logged in as the <systemitem>root</systemitem> user. This can lead to unintended consequences, such as removing files or directories by mistake or installing packages or other software that may not suit your system. Refer to the following examples:
237
261
</para>
238
262
239
-
<screen>[root@serverc pam.d]# rm -f system-auth password-auth (omit the -f)
240
-
[root@serverc ~]# yum install -y new-package (omit the -y)
Copy file name to clipboardExpand all lines: en-US/E.xml
+16-1Lines changed: 16 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -89,6 +89,22 @@
89
89
</listitem>
90
90
91
91
</varlistentry>
92
+
<varlistentryid="eol">
93
+
<term>EOL</term>
94
+
<listitem>
95
+
<para>
96
+
<emphasis>adj.</emphasis> Initialism for "end-of-line"
97
+
</para>
98
+
<para>
99
+
<emphasis>n.</emphasis> Initialism for "end of line"
100
+
</para>
101
+
<para>
102
+
Always use uppercase for the initialism. Do not capitalize the expansion except at the beginning of a sentence. When documenting GUI objects, use the same capitalization as that shown in the GUI.
Copy file name to clipboardExpand all lines: en-US/F.xml
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -240,10 +240,13 @@
240
240
<term>FQDN</term>
241
241
<listitem>
242
242
<para>
243
-
A fully qualified domain name consists of a host and domain name, including top-level domain. For example, www.redhat.com is a fully qualified domain name. www is the host, redhat is the second-level domain, and .com is the top level domain.
243
+
A fully qualified domain name consists of a list of domain labels representing the hierarchy from the lowest relevant level in the DNS to the top-level domain (TLD). The domain labels are concatenated using the full stop (.) character (dot or period) as a separator between labels.<footnote><para>https://en.wikipedia.org/wiki/Fully_qualified_domain_name</para></footnote>
244
+
</para>
245
+
<para>
246
+
For example, <uri>www.redhat.com</uri> is a fully qualified domain name, where <quote>www</quote> is the host, <quote>redhat</quote> is the second-level domain, and <quote>com</quote> is the top-level domain.
244
247
</para>
245
248
<para>
246
-
A FQDN always starts with a host name and continues all the way up to the top-level domain name, so www.parc.xerox.com is also a FQDN.
249
+
A FQDN always starts with a host name and continues all the way up to the top-level domain name; consequently <quote>www.parc.xerox.com</quote> is also a FQDN.
Copy file name to clipboardExpand all lines: en-US/M.xml
+10-1Lines changed: 10 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,16 @@
6
6
<chapterid="m">
7
7
<title>M</title>
8
8
<variablelist>
9
+
<varlistentryid="macOS">
10
+
<term>macOS</term>
11
+
<listitem>
12
+
<para>
13
+
In 2016, Apple rebranded OS X to macOS, adopting the nomenclature that it uses for their other operating systems: iOS, watchOS, and tvOS. The latest version of macOS is macOS 10.12 Sierra, which was publicly released in September 2016.
0 commit comments