<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.jedisaber.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Admin</id>
	<title>Jedisaber Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.jedisaber.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Admin"/>
	<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Special:Contributions/Admin"/>
	<updated>2026-05-15T18:10:01Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Sed&amp;diff=13173</id>
		<title>Sed</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Sed&amp;diff=13173"/>
		<updated>2025-06-27T18:12:39Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sed is a stream editor.  A stream editor is used to perform basic text transformations on an input stream (a file or input from a pipeline).  Sed is similar editors that script edits, but sed only makes one pass over the input(s), and thus is more efficient.  But it is sed&#039;s  ability to filter text in a pipeline which particularly distinguishes it from other types of editors.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Commands ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;: label&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;# comment&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;{....} Block&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;=&amp;lt;/code&amp;gt; print line number&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;a \&amp;lt;/code&amp;gt; Append&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;b label&amp;lt;/code&amp;gt; Branch&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;c \&amp;lt;/code&amp;gt; change&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;d&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;D&amp;lt;/code&amp;gt; Delete&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;g&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;G&amp;lt;/code&amp;gt; Get&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;h&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;H&amp;lt;/code&amp;gt; Hold&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;i \&amp;lt;/code&amp;gt; Insert&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l&amp;lt;/code&amp;gt; Look&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;N&amp;lt;/code&amp;gt; Next&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;p&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;P&amp;lt;/code&amp;gt; Print&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;q&amp;lt;/code&amp;gt; Quit&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;r &amp;lt;i&amp;gt;filename&amp;lt;/i&amp;gt;&amp;lt;/code&amp;gt; Read File&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;t label&amp;lt;/code&amp;gt; Test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;w filename&amp;lt;/code&amp;gt; Write Filename&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;x&amp;lt;/code&amp;gt; eXchange&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;y/..../..../&amp;lt;/code&amp;gt; - Transform&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s/..../..../&amp;lt;/code&amp;gt; - Substitute&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== sed Pattern Flags ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;/g&amp;lt;/code&amp;gt; Global. By default, sed only matches/replaces the first occurrence of a pattern for each line. The /g makes it replace all occurrences.&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039; &amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;sed &#039;s/red/blue/g&#039; &amp;lt; file.txt&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;/I&amp;lt;/code&amp;gt; Ignore Case&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;/p&amp;lt;/code&amp;gt; Print&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;/w &amp;lt;i&amp;gt;filename&amp;lt;/i&amp;gt;&amp;lt;/code&amp;gt; Write Filename&lt;br /&gt;
&lt;br /&gt;
== Special Characters ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&#039;&#039;&#039;&amp;amp;&#039;&#039;&#039;&amp;lt;/code&amp;gt; &#039;&#039;&#039;Corresponds to the pattern found.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;amp; is used when searching for a pattern and then adding some characters (such as parenthesis&amp;gt; around or near the pattern sed found. It&#039;s easy if you&#039;re searchin for a particular string:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed &#039;s/abc/(abc)/&#039; &amp;lt;old.txt &amp;gt;new.txt&amp;lt;/code&amp;gt; - Replaces &#039;&#039;&#039;abc&#039;&#039;&#039; with &#039;&#039;&#039;(abc)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
What if you don&#039;t know the output of the search string? You can use the special character &amp;lt;code&amp;gt;&amp;amp;&amp;lt;/code&amp;gt;, it represents the pattern that sed found.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed &#039;s/[a-z]*/(&amp;amp;)/&#039; &amp;lt;old.txt &amp;gt;new.txt &amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command Line Options ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt; -r &amp;lt;/code&amp;gt; &amp;amp;nbsp; Enable sed to use [[Regular Expressions]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt; -e &amp;lt;/code&amp;gt; The -e option lets you combine multiple commands&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -e &#039;s/a/A/&#039; -e &#039;s/b/B/&#039; &amp;lt;old.txt &amp;gt;new.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt; -i &amp;lt;/code&amp;gt; Inline editing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Substitution ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Replace a word with another word in a line:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s/..../..../&amp;lt;/code&amp;gt; Substitute. Changes the 1st pattern to the second pattern.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;s/red/blue/&#039; file.txt&amp;lt;/code&amp;gt; Changes &amp;quot;red&amp;quot; to &amp;quot;blue&amp;quot; in file.txt &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The search pattern is on the left, and the replacement string is on the right.&amp;lt;br /&amp;gt;&lt;br /&gt;
By default, sed replaces the first occurrence of the word on each line.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;If you want to replace all occurrences of the word on each line, add the g flag:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;s/red/blue/g&#039; sample.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Replace a whole line that matches the pattern:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;/Pattern/c\Replacement line here&#039; sample.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; Replacing text in multiple files at once:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
For an example, let&#039;s say we want to replace http: with https: in all the .html files in a directory:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;s/http:/https:/g&#039; *.html&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Remove leading and trailing whitespace:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;s/^[ \t]*//;s/[ \t]*$//&#039; sample.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Inserting ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Add a line of text before the pattern match:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;/Pattern/i Before this line&#039; sample.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- &amp;quot;Pattern&amp;quot; is what to search for.&amp;lt;br /&amp;gt;&lt;br /&gt;
- i is for Insert&amp;lt;br /&amp;gt;&lt;br /&gt;
- &amp;quot;Before this line&amp;quot; is the text that will be inserted before the line that has the pattern match&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Add a line after the pattern match:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;/Pattern/a Afterthis line&#039; sample.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Deleting ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;140,144d&#039; /etc/named.conf&amp;lt;/code&amp;gt; deletes the range of line numbers specified (140 through 144, in this case)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete empty lines:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;/^$/d&#039; sample.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete a specific line:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;3d&#039; sample.txt&amp;lt;/code&amp;gt; - Deletes line 3 from the file, sample.txt&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;[http://man.he.net/?topic=sed&amp;amp;section=all sed man page]&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;[http://www.grymoire.com/Unix/Sed.html Grymoire sed tutorial]&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;https://pro.tecmint.com/blog/sed-command-examples/&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Sed&amp;diff=13172</id>
		<title>Sed</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Sed&amp;diff=13172"/>
		<updated>2025-06-27T18:10:49Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sed is a stream editor.  A stream editor is used to perform basic text transformations on an input stream (a file or input from a pipeline).  Sed is similar editors that script edits, but sed only makes one pass over the input(s), and thus is more efficient.  But it is sed&#039;s  ability to filter text in a pipeline which particularly distinguishes it from other types of editors.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Commands ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;: label&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;# comment&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;{....} Block&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;=&amp;lt;/code&amp;gt; print line number&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;a \&amp;lt;/code&amp;gt; Append&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;b label&amp;lt;/code&amp;gt; Branch&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;c \&amp;lt;/code&amp;gt; change&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;d&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;D&amp;lt;/code&amp;gt; Delete&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;g&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;G&amp;lt;/code&amp;gt; Get&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;h&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;H&amp;lt;/code&amp;gt; Hold&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;i \&amp;lt;/code&amp;gt; Insert&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l&amp;lt;/code&amp;gt; Look&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;N&amp;lt;/code&amp;gt; Next&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;p&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;P&amp;lt;/code&amp;gt; Print&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;q&amp;lt;/code&amp;gt; Quit&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;r &amp;lt;i&amp;gt;filename&amp;lt;/i&amp;gt;&amp;lt;/code&amp;gt; Read File&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;t label&amp;lt;/code&amp;gt; Test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;w filename&amp;lt;/code&amp;gt; Write Filename&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;x&amp;lt;/code&amp;gt; eXchange&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;y/..../..../&amp;lt;/code&amp;gt; - Transform&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s/..../..../&amp;lt;/code&amp;gt; - Substitute&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== sed Pattern Flags ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;/g&amp;lt;/code&amp;gt; Global. By default, sed only matches/replaces the first occurrence of a pattern for each line. The /g makes it replace all occurrences.&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039; &amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;sed &#039;s/red/blue/g&#039; &amp;lt; file.txt&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;/I&amp;lt;/code&amp;gt; Ignore Case&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;/p&amp;lt;/code&amp;gt; Print&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;/w &amp;lt;i&amp;gt;filename&amp;lt;/i&amp;gt;&amp;lt;/code&amp;gt; Write Filename&lt;br /&gt;
&lt;br /&gt;
== Special Characters ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&#039;&#039;&#039;&amp;amp;&#039;&#039;&#039;&amp;lt;/code&amp;gt; &#039;&#039;&#039;Corresponds to the pattern found.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;amp; is used when searching for a pattern and then adding some characters (such as parenthesis&amp;gt; around or near the pattern sed found. It&#039;s easy if you&#039;re searchin for a particular string:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed &#039;s/abc/(abc)/&#039; &amp;lt;old.txt &amp;gt;new.txt&amp;lt;/code&amp;gt; - Replaces &#039;&#039;&#039;abc&#039;&#039;&#039; with &#039;&#039;&#039;(abc)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
What if you don&#039;t know the output of the search string? You can use the special character &amp;lt;code&amp;gt;&amp;amp;&amp;lt;/code&amp;gt;, it represents the pattern that sed found.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed &#039;s/[a-z]*/(&amp;amp;)/&#039; &amp;lt;old.txt &amp;gt;new.txt &amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command Line Options ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt; -r &amp;lt;/code&amp;gt; &amp;amp;nbsp; Enable sed to use [[Regular Expressions]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt; -e &amp;lt;/code&amp;gt; The -e option lets you combine multiple commands&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -e &#039;s/a/A/&#039; -e &#039;s/b/B/&#039; &amp;lt;old.txt &amp;gt;new.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt; -i &amp;lt;/code&amp;gt; Inline editing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Substitution ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Replace a word with another word in a line:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s/..../..../&amp;lt;/code&amp;gt; Substitute. Changes the 1st pattern to the second pattern.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;s/red/blue/&#039; file.txt&amp;lt;/code&amp;gt; Changes &amp;quot;red&amp;quot; to &amp;quot;blue&amp;quot; in file.txt &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The search pattern is on the left, and the replacement string is on the right.&amp;lt;br /&amp;gt;&lt;br /&gt;
By default, sed replaces the first occurrence of the word on each line.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;If you want to replace all occurrences of the word on each line, add the g flag:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;s/red/blue/g&#039; sample.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Replace a whole line that matches the pattern:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;/Pattern/c\Replacement line here&#039; sample.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; Replacing text in multiple files at once:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
For an example, let&#039;s say we want to replace http: with https: in all the .html files in a directory:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;s/http:/https:/g&#039; *.html&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Remove leading and trailing whitespace:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;s/^[ \t]*//;s/[ \t]*$//&#039; sample.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Inserting ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Add a line of text before the pattern match:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;/Pattern/i Before this line&#039; sample.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- &amp;quot;Pattern&amp;quot; is what to search for.&amp;lt;br /&amp;gt;&lt;br /&gt;
- i is for Insert&amp;lt;br /&amp;gt;&lt;br /&gt;
- &amp;quot;Before this line&amp;quot; is the text that will be inserted before the line that has the pattern match&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Add a line after the pattern match:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;/Pattern/a Afterthis line&#039; sample.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Deleting ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;140,144d&#039; /etc/named.conf&amp;lt;/code&amp;gt; deletes the range of line numbers specified (140 through 144, in this case)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete empty lines:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;/^$/d&#039; sample.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete a specific line:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;3d&#039; sample.txt&amp;lt;/code&amp;gt; - Deletes line 3 from the file, sample.txt&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;[http://man.he.net/?topic=sed&amp;amp;section=all sed man page]&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;[http://www.grymoire.com/Unix/Sed.html Grymoire sed tutorial]&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;[https://pro.tecmint.com/blog/sed-command-examples/]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Sed&amp;diff=13171</id>
		<title>Sed</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Sed&amp;diff=13171"/>
		<updated>2025-06-27T18:08:48Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sed is a stream editor.  A stream editor is used to perform basic text transformations on an input stream (a file or input from a pipeline).  Sed is similar editors that script edits, but sed only makes one pass over the input(s), and thus is more efficient.  But it is sed&#039;s  ability to filter text in a pipeline which particularly distinguishes it from other types of editors.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Commands ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;: label&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;# comment&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;{....} Block&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;=&amp;lt;/code&amp;gt; print line number&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;a \&amp;lt;/code&amp;gt; Append&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;b label&amp;lt;/code&amp;gt; Branch&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;c \&amp;lt;/code&amp;gt; change&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;d&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;D&amp;lt;/code&amp;gt; Delete&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;g&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;G&amp;lt;/code&amp;gt; Get&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;h&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;H&amp;lt;/code&amp;gt; Hold&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;i \&amp;lt;/code&amp;gt; Insert&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l&amp;lt;/code&amp;gt; Look&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;N&amp;lt;/code&amp;gt; Next&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;p&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;P&amp;lt;/code&amp;gt; Print&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;q&amp;lt;/code&amp;gt; Quit&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;r &amp;lt;i&amp;gt;filename&amp;lt;/i&amp;gt;&amp;lt;/code&amp;gt; Read File&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;t label&amp;lt;/code&amp;gt; Test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;w filename&amp;lt;/code&amp;gt; Write Filename&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;x&amp;lt;/code&amp;gt; eXchange&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;y/..../..../&amp;lt;/code&amp;gt; - Transform&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s/..../..../&amp;lt;/code&amp;gt; - Substitute&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== sed Pattern Flags ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;/g&amp;lt;/code&amp;gt; Global. By default, sed only matches/replaces the first occurrence of a pattern for each line. The /g makes it replace all occurrences.&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039; &amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;sed &#039;s/red/blue/g&#039; &amp;lt; file.txt&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;/I&amp;lt;/code&amp;gt; Ignore Case&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;/p&amp;lt;/code&amp;gt; Print&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;/w &amp;lt;i&amp;gt;filename&amp;lt;/i&amp;gt;&amp;lt;/code&amp;gt; Write Filename&lt;br /&gt;
&lt;br /&gt;
== Special Characters ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&#039;&#039;&#039;&amp;amp;&#039;&#039;&#039;&amp;lt;/code&amp;gt; &#039;&#039;&#039;Corresponds to the pattern found.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;amp; is used when searching for a pattern and then adding some characters (such as parenthesis&amp;gt; around or near the pattern sed found. It&#039;s easy if you&#039;re searchin for a particular string:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed &#039;s/abc/(abc)/&#039; &amp;lt;old.txt &amp;gt;new.txt&amp;lt;/code&amp;gt; - Replaces &#039;&#039;&#039;abc&#039;&#039;&#039; with &#039;&#039;&#039;(abc)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
What if you don&#039;t know the output of the search string? You can use the special character &amp;lt;code&amp;gt;&amp;amp;&amp;lt;/code&amp;gt;, it represents the pattern that sed found.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed &#039;s/[a-z]*/(&amp;amp;)/&#039; &amp;lt;old.txt &amp;gt;new.txt &amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command Line Options ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt; -r &amp;lt;/code&amp;gt; &amp;amp;nbsp; Enable sed to use [[Regular Expressions]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt; -e &amp;lt;/code&amp;gt; The -e option lets you combine multiple commands&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -e &#039;s/a/A/&#039; -e &#039;s/b/B/&#039; &amp;lt;old.txt &amp;gt;new.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt; -i &amp;lt;/code&amp;gt; Inline editing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Substitution ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Replace a word with another word in a line:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s/..../..../&amp;lt;/code&amp;gt; Substitute. Changes the 1st pattern to the second pattern.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;s/red/blue/&#039; file.txt&amp;lt;/code&amp;gt; Changes &amp;quot;red&amp;quot; to &amp;quot;blue&amp;quot; in file.txt &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The search pattern is on the left, and the replacement string is on the right.&amp;lt;br /&amp;gt;&lt;br /&gt;
By default, sed replaces the first occurrence of the word on each line.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;If you want to replace all occurrences of the word on each line, add the g flag:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;s/red/blue/g&#039; sample.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Replace a whole line that matches the pattern:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;/Pattern/c\Replacement line here&#039; sample.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; Replacing text in multiple files at once:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
For an example, let&#039;s say we want to replace http: with https: in all the .html files in a directory:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;s/http:/https:/g&#039; *.html&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Remove leading and trailing whitespace:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;s/^[ \t]*//;s/[ \t]*$//&#039; sample.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Inserting ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Add a line of text before the pattern match:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;/Pattern/i Before this line&#039; sample.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- &amp;quot;Pattern&amp;quot; is what to search for.&amp;lt;br /&amp;gt;&lt;br /&gt;
- i is for Insert&amp;lt;br /&amp;gt;&lt;br /&gt;
- &amp;quot;Before this line&amp;quot; is the text that will be inserted before the line that has the pattern match&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Add a line after the pattern match:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;/Pattern/a Afterthis line&#039; sample.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Deleting ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;140,144d&#039; /etc/named.conf&amp;lt;/code&amp;gt; deletes the range of line numbers specified (140 through 144, in this case)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete empty lines:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;/^$/d&#039; sample.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete a specific line:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;3d&#039; sample.txt&amp;lt;/code&amp;gt; - Deletes line 3 from the file, sample.txt&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;[http://man.he.net/?topic=sed&amp;amp;section=all sed man page]&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;[http://www.grymoire.com/Unix/Sed.html Grymoire sed tutorial]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Sed&amp;diff=13170</id>
		<title>Sed</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Sed&amp;diff=13170"/>
		<updated>2025-06-27T17:36:46Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sed is a stream editor.  A stream editor is used to perform basic text transformations on an input stream (a file or input from a pipeline).  Sed is similar editors that script edits, but sed only makes one pass over the input(s), and thus is more efficient.  But it is sed&#039;s  ability to filter text in a pipeline which particularly distinguishes it from other types of editors.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Commands ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;: label&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;# comment&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;{....} Block&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;=&amp;lt;/code&amp;gt; print line number&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;a \&amp;lt;/code&amp;gt; Append&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;b label&amp;lt;/code&amp;gt; Branch&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;c \&amp;lt;/code&amp;gt; change&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;d&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;D&amp;lt;/code&amp;gt; Delete&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;g&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;G&amp;lt;/code&amp;gt; Get&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;h&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;H&amp;lt;/code&amp;gt; Hold&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;i \&amp;lt;/code&amp;gt; Insert&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;l&amp;lt;/code&amp;gt; Look&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;n&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;N&amp;lt;/code&amp;gt; Next&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;p&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;P&amp;lt;/code&amp;gt; Print&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;q&amp;lt;/code&amp;gt; Quit&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;r &amp;lt;i&amp;gt;filename&amp;lt;/i&amp;gt;&amp;lt;/code&amp;gt; Read File&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;t label&amp;lt;/code&amp;gt; Test&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;w filename&amp;lt;/code&amp;gt; Write Filename&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;x&amp;lt;/code&amp;gt; eXchange&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;y/..../..../&amp;lt;/code&amp;gt; - Transform&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s/..../..../&amp;lt;/code&amp;gt; - Substitute&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== sed Pattern Flags ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;/g&amp;lt;/code&amp;gt; Global. By default, sed only matches/replaces the first occurrence of a pattern for each line. The /g makes it replace all occurrences.&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039; &amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;sed &#039;s/red/blue/g&#039; &amp;lt; file.txt&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;/I&amp;lt;/code&amp;gt; Ignore Case&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;/p&amp;lt;/code&amp;gt; Print&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;/w &amp;lt;i&amp;gt;filename&amp;lt;/i&amp;gt;&amp;lt;/code&amp;gt; Write Filename&lt;br /&gt;
&lt;br /&gt;
== Special Characters ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&#039;&#039;&#039;&amp;amp;&#039;&#039;&#039;&amp;lt;/code&amp;gt; &#039;&#039;&#039;Corresponds to the pattern found.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;amp; is used when searching for a pattern and then adding some characters (such as parenthesis&amp;gt; around or near the pattern sed found. It&#039;s easy if you&#039;re searchin for a particular string:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed &#039;s/abc/(abc)/&#039; &amp;lt;old.txt &amp;gt;new.txt&amp;lt;/code&amp;gt; - Replaces &#039;&#039;&#039;abc&#039;&#039;&#039; with &#039;&#039;&#039;(abc)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
What if you don&#039;t know the output of the search string? You can use the special character &amp;lt;code&amp;gt;&amp;amp;&amp;lt;/code&amp;gt;, it represents the pattern that sed found.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed &#039;s/[a-z]*/(&amp;amp;)/&#039; &amp;lt;old.txt &amp;gt;new.txt &amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Command Line Options ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt; -r &amp;lt;/code&amp;gt; &amp;amp;nbsp; Enable sed to use [[Regular Expressions]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt; -e &amp;lt;/code&amp;gt; The -e option lets you combine multiple commands&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -e &#039;s/a/A/&#039; -e &#039;s/b/B/&#039; &amp;lt;old.txt &amp;gt;new.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt; -i &amp;lt;/code&amp;gt; Inline editing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Substitution ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;s/..../..../&amp;lt;/code&amp;gt; Substitute. Changes the 1st pattern to the second pattern.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Example:&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;sed &#039;s/red/blue/&#039; &amp;lt; file.txt&amp;lt;/code&amp;gt; Changes &amp;quot;red&amp;quot; to &amp;quot;blue&amp;quot; in file.txt &amp;lt;br /&amp;gt;&lt;br /&gt;
or:&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;s/red/blue/&#039; file.txt&amp;lt;/code&amp;gt; Changes &amp;quot;red&amp;quot; to &amp;quot;blue&amp;quot; in file.txt &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;amp;nbsp; &amp;amp;nbsp; &amp;lt;code&amp;gt;cat file.txt | sed &#039;s/one/two/&#039;&amp;lt;/code&amp;gt; Changes &amp;quot;one&amp;quot; to &amp;quot;two&amp;quot; in file.txt&lt;br /&gt;
&lt;br /&gt;
The search pattern is on the left, and the replacement string is on the right. By default, sed replaces the first occurrence per line.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Deleting ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;sed -i &#039;140,144d&#039; /etc/named.conf&amp;lt;/code&amp;gt; deletes the range of line numbers specified (140 through 144, in this case)&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;[http://man.he.net/?topic=sed&amp;amp;section=all sed man page]&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;[http://www.grymoire.com/Unix/Sed.html Grymoire sed tutorial]&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Functions&amp;diff=13169</id>
		<title>Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Functions&amp;diff=13169"/>
		<updated>2025-06-27T00:38:43Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A function is a block of code that only runs when it is called.&lt;br /&gt;
&lt;br /&gt;
You can pass data to a function.&lt;br /&gt;
&lt;br /&gt;
A function can return data as a result.&lt;br /&gt;
&lt;br /&gt;
You can create a function by defining it:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
def my_function():&lt;br /&gt;
 print(&amp;quot;Hello from a function&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
... and call it thusly:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;my_function()&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
&lt;br /&gt;
https://www.w3schools.com/python/python_functions.asp&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Functions&amp;diff=13168</id>
		<title>Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Functions&amp;diff=13168"/>
		<updated>2025-06-27T00:37:46Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A function is a block of code that only runs when it is called.&lt;br /&gt;
&lt;br /&gt;
You can pass data to a function.&lt;br /&gt;
&lt;br /&gt;
A function can return data as a result.&lt;br /&gt;
&lt;br /&gt;
You can create a function by defining it:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
def my_function():&lt;br /&gt;
 print(&amp;quot;Hello from a function&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
... and call it thusly:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;my_function()&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Functions&amp;diff=13167</id>
		<title>Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Functions&amp;diff=13167"/>
		<updated>2025-06-27T00:37:28Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A function is a block of code that only runs when it is called.&lt;br /&gt;
&lt;br /&gt;
You can pass data to a function.&lt;br /&gt;
&lt;br /&gt;
A function can return data as a result.&lt;br /&gt;
&lt;br /&gt;
You can create a function by defining it:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
def my_function():&lt;br /&gt;
 print(&amp;quot;Hello from a function&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
... and call it thusly:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
my_function()&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Functions&amp;diff=13166</id>
		<title>Functions</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Functions&amp;diff=13166"/>
		<updated>2025-06-27T00:36:15Z</updated>

		<summary type="html">&lt;p&gt;Admin: Created page with &amp;quot;A function is a block of code that only runs when it is called.  You can pass data to a function.  A function can return data as a result.  You can create a function by defining it:  &amp;lt;code&amp;gt; def my_function():  print(&amp;quot;Hello from a function&amp;quot;) &amp;lt;/code&amp;gt;  ... and call it thusly:  &amp;lt;code&amp;gt; my_function() &amp;lt;/code&amp;gt;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A function is a block of code that only runs when it is called.&lt;br /&gt;
&lt;br /&gt;
You can pass data to a function.&lt;br /&gt;
&lt;br /&gt;
A function can return data as a result.&lt;br /&gt;
&lt;br /&gt;
You can create a function by defining it:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
def my_function():&lt;br /&gt;
 print(&amp;quot;Hello from a function&amp;quot;)&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
... and call it thusly:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
my_function()&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Basic_Stuff&amp;diff=13165</id>
		<title>Basic Stuff</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Basic_Stuff&amp;diff=13165"/>
		<updated>2025-06-27T00:33:32Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Functions]]&lt;br /&gt;
&lt;br /&gt;
[[Print]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Print&amp;diff=13164</id>
		<title>Print</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Print&amp;diff=13164"/>
		<updated>2025-06-27T00:31:35Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Print prints stuff to the screen.&lt;br /&gt;
&lt;br /&gt;
=== Basic Print stuff: ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;print(&amp;quot;Print this.&amp;quot;)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Will print:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;Print this.&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can also print variables:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;_textcon = &amp;quot;This is the text to print.&amp;quot;&amp;lt;/code&amp;gt; &amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;print(_textcon)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
f strings&amp;lt;br /&amp;gt;&lt;br /&gt;
F strings are one way to print a bunch of stuff with one line of code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;print(f&amp;quot;Hello, {_textcon}! \n How are you?&amp;quot;)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Will print:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Hello, This is the text to print.&lt;br /&gt;
How are you?&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Escape Characters ===&lt;br /&gt;
&lt;br /&gt;
In python, escape with a backslash \&lt;br /&gt;
&lt;br /&gt;
Escape Sequence - Character&lt;br /&gt;
&lt;br /&gt;
\\ Backslash &amp;lt;br /&amp;gt;&lt;br /&gt;
\b Backspace &amp;lt;br /&amp;gt;&lt;br /&gt;
\t Tab &amp;lt;br /&amp;gt;&lt;br /&gt;
\r Carriage Return (CR) &amp;lt;br /&amp;gt;&lt;br /&gt;
\n Line Feed (LF) &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
&lt;br /&gt;
https://realpython.com/python-print/?utm_source=notification_summary&amp;amp;utm_medium=email&amp;amp;utm_campaign=2025-06-26&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Print&amp;diff=13163</id>
		<title>Print</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Print&amp;diff=13163"/>
		<updated>2025-06-27T00:26:59Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Print prints stuff to the screen.&lt;br /&gt;
&lt;br /&gt;
=== Basic Print stuff: ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;print(&amp;quot;Print this.&amp;quot;)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Will print:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;Print this.&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can also print variables:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;_textcon = &amp;quot;This is the text to print.&amp;quot;&amp;lt;/code&amp;gt; &amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;print(_textcon)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
f strings&amp;lt;br /&amp;gt;&lt;br /&gt;
F strings are one way to print a bunch of stuff with one line of code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;print(f&amp;quot;Hello, {_textcon}! \n How are you?&amp;quot;)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Will print:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Hello, This is the text to print.&lt;br /&gt;
How are you?&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Escape Characters ===&lt;br /&gt;
&lt;br /&gt;
In python, escape with a backslash \&lt;br /&gt;
&lt;br /&gt;
Escape Sequence - Character&lt;br /&gt;
&lt;br /&gt;
\\ Backslash &amp;lt;br /&amp;gt;&lt;br /&gt;
\b Backspace &amp;lt;br /&amp;gt;&lt;br /&gt;
\t Tab &amp;lt;br /&amp;gt;&lt;br /&gt;
\r Carriage Return (CR) &amp;lt;br /&amp;gt;&lt;br /&gt;
\n Line Feed (LF) &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
&lt;br /&gt;
https://realpython.com/python-print/?utm_source=notification_summary&amp;amp;utm_medium=email&amp;amp;utm_campaign=2025-06-26&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Print&amp;diff=13162</id>
		<title>Print</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Print&amp;diff=13162"/>
		<updated>2025-06-27T00:26:35Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Print prints stuff to the screen.&lt;br /&gt;
&lt;br /&gt;
=== Basic Print stuff: ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;print(&amp;quot;Print this.&amp;quot;)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Will print:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;Print this.&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can also print variables:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;_textcon = &amp;quot;This is the text to print.&amp;quot;&amp;lt;/code&amp;gt; &amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;print(_textcon)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
f strings&amp;lt;br /&amp;gt;&lt;br /&gt;
F strings are one way to print a bunch of stuff with one line of code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;print(f&amp;quot;Hello, {_textcon}! \n How are you?&amp;quot;)&amp;lt;code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Will print:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Hello, This is the text to print.&lt;br /&gt;
How are you?&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Escape Characters ===&lt;br /&gt;
&lt;br /&gt;
In python, escape with a backslash \&lt;br /&gt;
&lt;br /&gt;
Escape Sequence - Character&lt;br /&gt;
&lt;br /&gt;
\\ Backslash &amp;lt;br /&amp;gt;&lt;br /&gt;
\b Backspace &amp;lt;br /&amp;gt;&lt;br /&gt;
\t Tab &amp;lt;br /&amp;gt;&lt;br /&gt;
\r Carriage Return (CR) &amp;lt;br /&amp;gt;&lt;br /&gt;
\n Line Feed (LF) &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
&lt;br /&gt;
https://realpython.com/python-print/?utm_source=notification_summary&amp;amp;utm_medium=email&amp;amp;utm_campaign=2025-06-26&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Print&amp;diff=13161</id>
		<title>Print</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Print&amp;diff=13161"/>
		<updated>2025-06-27T00:22:33Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Print prints stuff to the screen.&lt;br /&gt;
&lt;br /&gt;
=== Basic Print stuff: ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;print(&amp;quot;Print this.&amp;quot;)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Will print:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;Print this.&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can also print variables:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;_textcon = &amp;quot;This is the text to print.&amp;quot;&amp;lt;/code&amp;gt; &amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;print(_textcon)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Escape Characters ===&lt;br /&gt;
&lt;br /&gt;
In python, escape with a backslash \&lt;br /&gt;
&lt;br /&gt;
Escape Sequence - Character&lt;br /&gt;
&lt;br /&gt;
\\ Backslash &amp;lt;br /&amp;gt;&lt;br /&gt;
\b Backspace &amp;lt;br /&amp;gt;&lt;br /&gt;
\t Tab &amp;lt;br /&amp;gt;&lt;br /&gt;
\r Carriage Return (CR) &amp;lt;br /&amp;gt;&lt;br /&gt;
\n Line Feed (LF) &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
&lt;br /&gt;
https://realpython.com/python-print/?utm_source=notification_summary&amp;amp;utm_medium=email&amp;amp;utm_campaign=2025-06-26&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Print&amp;diff=13160</id>
		<title>Print</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Print&amp;diff=13160"/>
		<updated>2025-06-27T00:19:52Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Print prints stuff to the screen.&lt;br /&gt;
&lt;br /&gt;
=== Basic Print stuff: ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;print(&amp;quot;Print this.&amp;quot;)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Will print:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;Print this.&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Escape Characters ===&lt;br /&gt;
&lt;br /&gt;
In python, escape with a backslash \&lt;br /&gt;
&lt;br /&gt;
Escape Sequence - Character&lt;br /&gt;
&lt;br /&gt;
\\ Backslash &amp;lt;br /&amp;gt;&lt;br /&gt;
\b Backspace &amp;lt;br /&amp;gt;&lt;br /&gt;
\t Tab &amp;lt;br /&amp;gt;&lt;br /&gt;
\r Carriage Return (CR) &amp;lt;br /&amp;gt;&lt;br /&gt;
\n Line Feed (LF) &amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Print&amp;diff=13159</id>
		<title>Print</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Print&amp;diff=13159"/>
		<updated>2025-06-27T00:14:30Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Print prints stuff to the screen.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;print(&amp;quot;Print this.&amp;quot;)&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Will print:&lt;br /&gt;
&lt;br /&gt;
Print this.&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Print&amp;diff=13158</id>
		<title>Print</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Print&amp;diff=13158"/>
		<updated>2025-06-27T00:13:27Z</updated>

		<summary type="html">&lt;p&gt;Admin: Created page with &amp;quot;Print prints stuff to the screen.  [code]print(&amp;quot;Print this.&amp;quot;)[/code]  Will print:  Print this.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Print prints stuff to the screen.&lt;br /&gt;
&lt;br /&gt;
[code]print(&amp;quot;Print this.&amp;quot;)[/code]&lt;br /&gt;
&lt;br /&gt;
Will print:&lt;br /&gt;
&lt;br /&gt;
Print this.&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Basic_Stuff&amp;diff=13157</id>
		<title>Basic Stuff</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Basic_Stuff&amp;diff=13157"/>
		<updated>2025-06-27T00:11:35Z</updated>

		<summary type="html">&lt;p&gt;Admin: Created page with &amp;quot;Print&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Print]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Python&amp;diff=13156</id>
		<title>Python</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Python&amp;diff=13156"/>
		<updated>2025-06-27T00:11:16Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a brief Python reference.&lt;br /&gt;
&lt;br /&gt;
[[Basic Stuff]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Python&amp;diff=13155</id>
		<title>Python</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Python&amp;diff=13155"/>
		<updated>2025-06-27T00:10:57Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a brief Python reference.&lt;br /&gt;
&lt;br /&gt;
[Basic Stuff]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Basic_Concepts&amp;diff=13154</id>
		<title>Basic Concepts</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Basic_Concepts&amp;diff=13154"/>
		<updated>2025-06-06T19:21:06Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== CIA Triad ===&lt;br /&gt;
&lt;br /&gt;
[[File:Sec_objectives.jpg|600px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
The three key objectives (CIA Triad) of cybersecurity programs are confidentiality, integrity, and availability.&lt;br /&gt;
&lt;br /&gt;
- Confidentiality: Unauthorized users don&#039;t gain access.&lt;br /&gt;
(Firewalls, ACL&#039;s, encryption)&lt;br /&gt;
&lt;br /&gt;
- Integrity: No unauthorized modifications.&lt;br /&gt;
(Hashing, monitoring)&lt;br /&gt;
&lt;br /&gt;
- Availability: The system is up when users need it.&lt;br /&gt;
(fault tolerance, clustering, backups)&lt;br /&gt;
&lt;br /&gt;
Nonrepudiation: Someone who performed an action can&#039;t deny performing said action&lt;br /&gt;
(Digital Signatures)&lt;br /&gt;
(Not a part of CIA, but also important.)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== DAD Triad ===&lt;br /&gt;
&lt;br /&gt;
[[File:Sec_DAD.jpg|600px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
The the three key threats to cybersecurity efforts: disclosure, alteration, and denial.&lt;br /&gt;
&lt;br /&gt;
- Disclosure:  exposure of sensitive information to unauthorized individuals; violation of the principle of confidentiality&lt;br /&gt;
(Attacks on the system, misconfigured credentials, lost devices)&lt;br /&gt;
&lt;br /&gt;
- Alteration:  unauthorized modification of information; violation of the principle of integrity&lt;br /&gt;
(fraudulent transactions, typos, bit flip due to power loss)&lt;br /&gt;
&lt;br /&gt;
- Denial: disruption of an authorized user&#039;s legitimate access to information; violation of the principle of availability&lt;br /&gt;
(DDoS, failure of a server)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Practical Application ===&lt;br /&gt;
&lt;br /&gt;
You can use the CIA and DAD models as a starting point for a more detailed risk analysis.&lt;br /&gt;
&lt;br /&gt;
Security incidents occur when there is a breach of the confidentiality, integrity, and/or availability of information or systems.&lt;br /&gt;
&lt;br /&gt;
CIA and DAD triads can be a useful staring point.&lt;br /&gt;
&lt;br /&gt;
For example, in assessing threats to your website, you can apply the DAD triad:&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;Disclosure:&#039;&#039;&#039; Does the site contain sensitive information that would damage the company if it was disclosed at an attacker?&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;Alteration:&#039;&#039;&#039; If an attacker was able to modify information contained on the site, would that cause financial, reputational, or operational damage?&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;Denial:&#039;&#039;&#039; Does the website perform mission-critical activities that could damage the business significantly if an attacker were able to disrupt the site?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Impacts of a breech ===&lt;br /&gt;
&lt;br /&gt;
A security incident can have several types of risk.&lt;br /&gt;
&lt;br /&gt;
Types of risk:&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;Financial Risk&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Monetary damage. Equipment and/or facilities may have to be repairs or replaced.&lt;br /&gt;
Indirectly, plans or information may be lost that may cost money to re-create (or information could go to a competitor that &lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;Reputational Risk&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Negative publicity about a security incident. (Can effect customers, employees, suppliers, and stakeholders opinions.)&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;Strategic Risk&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
An organization may become less effective in meeting its major goals and objectives as a result of the breach.&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;Operational Risk&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Risk to the organization&#039;s ability to carry out its day-to-day functions.&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;Compliance Risk&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
When a security breach causes an organization to run afoul of legal or regulatory requirements.&lt;br /&gt;
(Example: HIPAA compliance failures, such as losing patient files.)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Risk can be in more than one category.&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Basic_Concepts&amp;diff=13153</id>
		<title>Basic Concepts</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Basic_Concepts&amp;diff=13153"/>
		<updated>2025-06-06T19:13:10Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== CIA Triad ===&lt;br /&gt;
&lt;br /&gt;
[[File:Sec_objectives.jpg|600px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
The three key objectives (CIA Triad) of cybersecurity programs are confidentiality, integrity, and availability.&lt;br /&gt;
&lt;br /&gt;
- Confidentiality: Unauthorized users don&#039;t gain access.&lt;br /&gt;
(Firewalls, ACL&#039;s, encryption)&lt;br /&gt;
&lt;br /&gt;
- Integrity: No unauthorized modifications.&lt;br /&gt;
(Hashing, monitoring)&lt;br /&gt;
&lt;br /&gt;
- Availability: The system is up when users need it.&lt;br /&gt;
(fault tolerance, clustering, backups)&lt;br /&gt;
&lt;br /&gt;
Nonrepudiation: Someone who performed an action can&#039;t deny performing said action&lt;br /&gt;
(Digital Signatures)&lt;br /&gt;
(Not a part of CIA, but also important.)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== DAD Triad ===&lt;br /&gt;
&lt;br /&gt;
[[File:Sec_DAD.jpg|600px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
The the three key threats to cybersecurity efforts: disclosure, alteration, and denial.&lt;br /&gt;
&lt;br /&gt;
- Disclosure:  exposure of sensitive information to unauthorized individuals; violation of the principle of confidentiality&lt;br /&gt;
(Attacks on the system, misconfigured credentials, lost devices)&lt;br /&gt;
&lt;br /&gt;
- Alteration:  unauthorized modification of information; violation of the principle of integrity&lt;br /&gt;
(fraudulent transactions, typos, bit flip due to power loss)&lt;br /&gt;
&lt;br /&gt;
- Denial: disruption of an authorized user&#039;s legitimate access to information; violation of the principle of availability&lt;br /&gt;
(DDoS, failure of a server)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Practical Application ===&lt;br /&gt;
&lt;br /&gt;
You can use the CIA and DAD models as a starting point for a more detailed risk analysis.&lt;br /&gt;
&lt;br /&gt;
Security incidents occur when there is a breach of the confidentiality, integrity, and/or availability of information or systems.&lt;br /&gt;
&lt;br /&gt;
CIA and DAD triads can be a useful staring point.&lt;br /&gt;
&lt;br /&gt;
For example, in assessing threats to your website, you can apply the DAD triad:&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;Disclosure:&#039;&#039;&#039; Does the site contain sensitive information that would damage the company if it was disclosed at an attacker?&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;Alteration:&#039;&#039;&#039; If an attacker was able to modify information contained on the site, would that cause financial, reputational, or operational damage?&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;Denial:&#039;&#039;&#039; Does the website perform mission-critical activities that could damage the business significantly if an attacker were able to disrupt the site?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Impacts of a breech ===&lt;br /&gt;
&lt;br /&gt;
A security incident can have several types of risk.&lt;br /&gt;
&lt;br /&gt;
Types of risk:&lt;br /&gt;
&lt;br /&gt;
- &#039;&#039;&#039;Financial Risk&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Monetary damage. Equipment and/or facilities may have to be repairs or replaced.&lt;br /&gt;
Indirectly, plans or information may be lost that may cost money to re-create (or information could go to a competitor that &lt;br /&gt;
&lt;br /&gt;
- Reputational Risk&lt;br /&gt;
&lt;br /&gt;
- Strategic Risk&lt;br /&gt;
&lt;br /&gt;
- Operational Risk&lt;br /&gt;
&lt;br /&gt;
- Compliance Risk&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Security&amp;diff=13152</id>
		<title>Security</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Security&amp;diff=13152"/>
		<updated>2025-06-06T00:01:17Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Security ==&lt;br /&gt;
&lt;br /&gt;
Information on general security, and stuff for Security+&lt;br /&gt;
&lt;br /&gt;
[[Basic Concepts]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(This is basically my notes for the CompTIA Security+ stuff. More and better free information is at: https://dl1.technet24.ir/Downloads/EBooks/Security/CompTIA-Security-Study-Guide-with-over-500-Practice-Test-Questions-Exam-SY0-701-9th-Edition.pdf)&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Basic_Concepts&amp;diff=13151</id>
		<title>Basic Concepts</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Basic_Concepts&amp;diff=13151"/>
		<updated>2025-06-05T23:57:36Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== CIA Triad ===&lt;br /&gt;
&lt;br /&gt;
[[File:Sec_objectives.jpg|600px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
The three key objectives (CIA Triad) of cybersecurity programs are confidentiality, integrity, and availability.&lt;br /&gt;
&lt;br /&gt;
- Confidentiality: Unauthorized users don&#039;t gain access.&lt;br /&gt;
(Firewalls, ACL&#039;s, encryption)&lt;br /&gt;
&lt;br /&gt;
- Integrity: No unauthorized modifications.&lt;br /&gt;
(Hashing, monitoring)&lt;br /&gt;
&lt;br /&gt;
- Availability: The system is up when users need it.&lt;br /&gt;
(fault tolerance, clustering, backups)&lt;br /&gt;
&lt;br /&gt;
Nonrepudiation: Someone who performed an action can&#039;t deny performing said action&lt;br /&gt;
(Digital Signatures)&lt;br /&gt;
(Not a part of CIA, but also important.)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== DAD Triad ===&lt;br /&gt;
&lt;br /&gt;
[[File:Sec_DAD.jpg|600px|thumb|center]]&lt;br /&gt;
&lt;br /&gt;
The the three key threats to cybersecurity efforts: disclosure, alteration, and denial.&lt;br /&gt;
&lt;br /&gt;
- Disclosure:  exposure of sensitive information to unauthorized individuals; violation of the principle of confidentiality&lt;br /&gt;
(Attacks on the system, misconfigured credentials, lost devices)&lt;br /&gt;
&lt;br /&gt;
- Alteration:  unauthorized modification of information; violation of the principle of integrity&lt;br /&gt;
(fraudulent transactions, typos, bit flip due to power loss)&lt;br /&gt;
&lt;br /&gt;
- Denial: disruption of an authorized user&#039;s legitimate access to information; violation of the principle of availability&lt;br /&gt;
(DDoS, failure of a server)&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=File:Sec_DAD.jpg&amp;diff=13150</id>
		<title>File:Sec DAD.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=File:Sec_DAD.jpg&amp;diff=13150"/>
		<updated>2025-06-05T23:50:53Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Basic_Concepts&amp;diff=13149</id>
		<title>Basic Concepts</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Basic_Concepts&amp;diff=13149"/>
		<updated>2025-06-05T23:48:50Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== CIA Triad ===&lt;br /&gt;
&lt;br /&gt;
[[File:Sec_objectives.jpg]]&lt;br /&gt;
&lt;br /&gt;
The three key objectives (CIA Triad) of cybersecurity programs are confidentiality, integrity, and availability.&lt;br /&gt;
&lt;br /&gt;
- Confidentiality: Unauthorized users don&#039;t gain access.&lt;br /&gt;
(Firewalls, ACL&#039;s, encryption)&lt;br /&gt;
&lt;br /&gt;
- Integrity: No unauthorized modifications.&lt;br /&gt;
(Hashing, monitoring)&lt;br /&gt;
&lt;br /&gt;
- Availability: The system is up when users need it.&lt;br /&gt;
(fault tolerance, clustering, backups)&lt;br /&gt;
&lt;br /&gt;
Nonrepudiation: Someone who performed an action can&#039;t deny performing said action&lt;br /&gt;
(Digital Signatures)&lt;br /&gt;
(Not a part of CIA, but also important.)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== DAD Triad ===&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Basic_Concepts&amp;diff=13148</id>
		<title>Basic Concepts</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Basic_Concepts&amp;diff=13148"/>
		<updated>2025-06-05T23:37:00Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Sec_objectives.jpg]]&lt;br /&gt;
&lt;br /&gt;
The three key objectives of cybersecurity programs are confidentiality, integrity, and availability.&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=File:Sec_objectives.jpg&amp;diff=13147</id>
		<title>File:Sec objectives.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=File:Sec_objectives.jpg&amp;diff=13147"/>
		<updated>2025-06-05T23:36:29Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Basic_Concepts&amp;diff=13146</id>
		<title>Basic Concepts</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Basic_Concepts&amp;diff=13146"/>
		<updated>2025-06-05T23:35:37Z</updated>

		<summary type="html">&lt;p&gt;Admin: Created page with &amp;quot;  The three key objectives of cybersecurity programs are confidentiality, integrity, and availability.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
The three key objectives of cybersecurity programs are confidentiality, integrity, and availability.&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Security&amp;diff=13145</id>
		<title>Security</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Security&amp;diff=13145"/>
		<updated>2025-06-05T23:32:15Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Security ==&lt;br /&gt;
&lt;br /&gt;
Information on general security, and stuff for Security+&lt;br /&gt;
&lt;br /&gt;
[[Basic Concepts]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Security&amp;diff=13144</id>
		<title>Security</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Security&amp;diff=13144"/>
		<updated>2025-06-05T23:30:55Z</updated>

		<summary type="html">&lt;p&gt;Admin: Created page with &amp;quot;= Security  Information on general security, and stuff for Security+  Basic Concepts&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Security&lt;br /&gt;
&lt;br /&gt;
Information on general security, and stuff for Security+&lt;br /&gt;
&lt;br /&gt;
Basic Concepts&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=MediaWiki:Sidebar&amp;diff=13143</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=MediaWiki:Sidebar&amp;diff=13143"/>
		<updated>2025-06-05T23:29:36Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* navigation&lt;br /&gt;
** Main_Page|Wiki Home Page&lt;br /&gt;
** Special:RecentChanges|Recent changes&lt;br /&gt;
** Special:Random|randompage&lt;br /&gt;
** helppage|help&lt;br /&gt;
&lt;br /&gt;
* Topics&lt;br /&gt;
** cPanel|cPanel&lt;br /&gt;
** Logs | Logs&lt;br /&gt;
** Linux_Commands|Linux Commands&lt;br /&gt;
** Other Software|Other Software&lt;br /&gt;
** Plesk|Plesk&lt;br /&gt;
** Procedures|Procedures&lt;br /&gt;
&lt;br /&gt;
* Other&lt;br /&gt;
** bash_script | Bash Script&lt;br /&gt;
** Other_Tools | Other Tools&lt;br /&gt;
** Python | Python&lt;br /&gt;
** Regular_Expressions | Regular Expressions&lt;br /&gt;
** Security | Security+ stuff&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* TOOLBOX&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13142</id>
		<title>Military Time Conversion Chart</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13142"/>
		<updated>2025-04-15T18:51:37Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Convert Military Time To Standard And Vice Versa ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|margin:auto; style=&amp;quot;margin:auto; border-style: solid; border-width: 2px; border-color: black&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align: center; font-weight: bold; border-style: solid; border-width: 2px; border-color: black; background-color: #aed6f1&amp;quot; | 12 Hour&lt;br /&gt;
!! style=&amp;quot;text-align: center; font-weight: bold; border-style: solid; border-width: 2px; border-color: black; background-color: #aed6f1&amp;quot; | 24 Hour&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 12:00am midnight&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 00:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 1:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 01:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 2:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 02:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 3:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 03:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 4:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 04:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 5:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 05:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 6:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 06:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 7:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 07:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 8:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 08:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 9:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 09:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 10:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 10:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 11:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 11:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 12:00pm noon&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 12:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 1:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 13:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 2:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 14:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 3:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 15:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 4:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 16:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 5:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 17:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 6:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 18:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 7:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 19:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 8:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 20:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 9:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 21:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 10:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 22:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 11:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 23:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 12:00am midnight&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 24:00&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13141</id>
		<title>Military Time Conversion Chart</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13141"/>
		<updated>2025-04-15T18:50:16Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Convert Military Time To Standard And Vice Versa ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|margin:auto; style=&amp;quot;margin:auto; border-style: solid; border-width: 2px; border-color: black&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align: center; font-weight: bold; background-color: #aed6f1&amp;quot; | 12 Hour&lt;br /&gt;
!! style=&amp;quot;text-align: center; font-weight: bold; background-color: #aed6f1&amp;quot; | 24 Hour&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 12:00am midnight&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 00:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 1:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 01:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 2:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 02:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 3:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 03:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 4:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 04:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 5:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 05:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 6:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 06:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 7:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 07:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 8:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 08:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 9:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 09:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 10:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 10:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 11:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 11:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 12:00pm noon&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 12:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 1:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 13:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 2:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 14:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 3:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 15:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 4:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 16:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 5:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 17:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 6:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 18:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 7:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 19:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 8:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 20:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 9:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 21:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 10:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 22:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 11:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 23:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 12:00am midnight&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 24:00&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13140</id>
		<title>Military Time Conversion Chart</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13140"/>
		<updated>2025-04-15T18:43:06Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Convert Military Time To Standard And Vice Versa ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|margin:auto; style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! 12 Hour !! 24 Hour&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 12:00am midnight&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 00:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 1:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 01:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 2:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 02:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 3:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 03:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 4:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 04:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 5:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 05:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 6:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 06:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 7:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 07:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 8:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 08:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 9:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 09:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 10:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 10:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 11:00am&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 11:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 12:00pm noon&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 12:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 1:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 13:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 2:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 14:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 3:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 15:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 4:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 16:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 5:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 17:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 6:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 18:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 7:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 19:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 8:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 20:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 9:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 21:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 10:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 22:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 11:00pm&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 23:00&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 12:00am midnight&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 24:00&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13139</id>
		<title>Military Time Conversion Chart</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13139"/>
		<updated>2025-04-15T18:40:37Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Convert Military Time To Standard And Vice Versa ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; margin:auto; style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! 12 Hour !! 24 Hour&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot; | 12:00am midnight&lt;br /&gt;
|00:00&lt;br /&gt;
|-&lt;br /&gt;
|1:00am&lt;br /&gt;
|01:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00am&lt;br /&gt;
|02:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00am&lt;br /&gt;
|03:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00am&lt;br /&gt;
|04:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00am&lt;br /&gt;
|05:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00am&lt;br /&gt;
|06:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00am&lt;br /&gt;
|07:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00am&lt;br /&gt;
|08:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00am&lt;br /&gt;
|09:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00am&lt;br /&gt;
|10:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00am&lt;br /&gt;
|11:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00pm noon&lt;br /&gt;
|12:00&lt;br /&gt;
|-&lt;br /&gt;
|1:00pm&lt;br /&gt;
|13:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00pm&lt;br /&gt;
|14:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00pm&lt;br /&gt;
|15:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00pm&lt;br /&gt;
|16:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00pm&lt;br /&gt;
|17:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00pm&lt;br /&gt;
|18:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00pm&lt;br /&gt;
|19:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00pm&lt;br /&gt;
|20:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00pm&lt;br /&gt;
|21:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00pm&lt;br /&gt;
|22:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00pm&lt;br /&gt;
|23:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00am midnight&lt;br /&gt;
|24:00&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13138</id>
		<title>Military Time Conversion Chart</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13138"/>
		<updated>2025-04-15T18:38:04Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Convert Military Time To Standard And Vice Versa ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|margin:auto; style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! 12 Hour !! 24 Hour&lt;br /&gt;
|-&lt;br /&gt;
|12:00am midnight&lt;br /&gt;
|00:00&lt;br /&gt;
| style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|1:00am&lt;br /&gt;
|01:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00am&lt;br /&gt;
|02:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00am&lt;br /&gt;
|03:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00am&lt;br /&gt;
|04:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00am&lt;br /&gt;
|05:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00am&lt;br /&gt;
|06:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00am&lt;br /&gt;
|07:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00am&lt;br /&gt;
|08:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00am&lt;br /&gt;
|09:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00am&lt;br /&gt;
|10:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00am&lt;br /&gt;
|11:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00pm noon&lt;br /&gt;
|12:00&lt;br /&gt;
|-&lt;br /&gt;
|1:00pm&lt;br /&gt;
|13:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00pm&lt;br /&gt;
|14:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00pm&lt;br /&gt;
|15:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00pm&lt;br /&gt;
|16:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00pm&lt;br /&gt;
|17:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00pm&lt;br /&gt;
|18:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00pm&lt;br /&gt;
|19:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00pm&lt;br /&gt;
|20:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00pm&lt;br /&gt;
|21:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00pm&lt;br /&gt;
|22:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00pm&lt;br /&gt;
|23:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00am midnight&lt;br /&gt;
|24:00&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13137</id>
		<title>Military Time Conversion Chart</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13137"/>
		<updated>2025-04-15T18:37:21Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Convert Military Time To Standard And Vice Versa ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|margin:auto; style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! 12 Hour !! 24 Hour&lt;br /&gt;
|-&lt;br /&gt;
|12:00am midnight&lt;br /&gt;
|00:00&lt;br /&gt;
|style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|1:00am&lt;br /&gt;
|01:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00am&lt;br /&gt;
|02:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00am&lt;br /&gt;
|03:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00am&lt;br /&gt;
|04:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00am&lt;br /&gt;
|05:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00am&lt;br /&gt;
|06:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00am&lt;br /&gt;
|07:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00am&lt;br /&gt;
|08:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00am&lt;br /&gt;
|09:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00am&lt;br /&gt;
|10:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00am&lt;br /&gt;
|11:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00pm noon&lt;br /&gt;
|12:00&lt;br /&gt;
|-&lt;br /&gt;
|1:00pm&lt;br /&gt;
|13:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00pm&lt;br /&gt;
|14:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00pm&lt;br /&gt;
|15:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00pm&lt;br /&gt;
|16:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00pm&lt;br /&gt;
|17:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00pm&lt;br /&gt;
|18:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00pm&lt;br /&gt;
|19:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00pm&lt;br /&gt;
|20:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00pm&lt;br /&gt;
|21:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00pm&lt;br /&gt;
|22:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00pm&lt;br /&gt;
|23:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00am midnight&lt;br /&gt;
|24:00&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13136</id>
		<title>Military Time Conversion Chart</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13136"/>
		<updated>2025-04-15T18:35:19Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Convert Military Time To Standard And Vice Versa ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;border-style: solid; border-width: 2px; border-color: black&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! 12 Hour !! 24 Hour&lt;br /&gt;
|-&lt;br /&gt;
|12:00am midnight&lt;br /&gt;
|00:00&lt;br /&gt;
|-&lt;br /&gt;
|1:00am&lt;br /&gt;
|01:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00am&lt;br /&gt;
|02:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00am&lt;br /&gt;
|03:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00am&lt;br /&gt;
|04:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00am&lt;br /&gt;
|05:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00am&lt;br /&gt;
|06:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00am&lt;br /&gt;
|07:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00am&lt;br /&gt;
|08:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00am&lt;br /&gt;
|09:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00am&lt;br /&gt;
|10:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00am&lt;br /&gt;
|11:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00pm noon&lt;br /&gt;
|12:00&lt;br /&gt;
|-&lt;br /&gt;
|1:00pm&lt;br /&gt;
|13:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00pm&lt;br /&gt;
|14:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00pm&lt;br /&gt;
|15:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00pm&lt;br /&gt;
|16:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00pm&lt;br /&gt;
|17:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00pm&lt;br /&gt;
|18:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00pm&lt;br /&gt;
|19:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00pm&lt;br /&gt;
|20:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00pm&lt;br /&gt;
|21:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00pm&lt;br /&gt;
|22:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00pm&lt;br /&gt;
|23:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00am midnight&lt;br /&gt;
|24:00&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13135</id>
		<title>Military Time Conversion Chart</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13135"/>
		<updated>2025-04-15T18:31:48Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Convert Military Time To Standard And Vice Versa ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;margin:auto; border-style: solid; border-width: 2px; border-color: black&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! 12 Hour !! 24 Hour&lt;br /&gt;
|-&lt;br /&gt;
|12:00am midnight&lt;br /&gt;
|00:00&lt;br /&gt;
|-&lt;br /&gt;
|1:00am&lt;br /&gt;
|01:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00am&lt;br /&gt;
|02:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00am&lt;br /&gt;
|03:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00am&lt;br /&gt;
|04:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00am&lt;br /&gt;
|05:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00am&lt;br /&gt;
|06:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00am&lt;br /&gt;
|07:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00am&lt;br /&gt;
|08:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00am&lt;br /&gt;
|09:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00am&lt;br /&gt;
|10:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00am&lt;br /&gt;
|11:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00pm noon&lt;br /&gt;
|12:00&lt;br /&gt;
|-&lt;br /&gt;
|1:00pm&lt;br /&gt;
|13:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00pm&lt;br /&gt;
|14:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00pm&lt;br /&gt;
|15:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00pm&lt;br /&gt;
|16:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00pm&lt;br /&gt;
|17:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00pm&lt;br /&gt;
|18:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00pm&lt;br /&gt;
|19:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00pm&lt;br /&gt;
|20:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00pm&lt;br /&gt;
|21:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00pm&lt;br /&gt;
|22:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00pm&lt;br /&gt;
|23:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00am midnight&lt;br /&gt;
|24:00&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13134</id>
		<title>Military Time Conversion Chart</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13134"/>
		<updated>2025-04-15T18:31:23Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Convert Military Time To Standard And Vice Versa ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin:auto; border-style: solid; border-width: 2px; border-color: black&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! 12 Hour !! 24 Hour&lt;br /&gt;
|-&lt;br /&gt;
|12:00am midnight&lt;br /&gt;
|00:00&lt;br /&gt;
|-&lt;br /&gt;
|1:00am&lt;br /&gt;
|01:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00am&lt;br /&gt;
|02:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00am&lt;br /&gt;
|03:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00am&lt;br /&gt;
|04:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00am&lt;br /&gt;
|05:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00am&lt;br /&gt;
|06:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00am&lt;br /&gt;
|07:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00am&lt;br /&gt;
|08:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00am&lt;br /&gt;
|09:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00am&lt;br /&gt;
|10:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00am&lt;br /&gt;
|11:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00pm noon&lt;br /&gt;
|12:00&lt;br /&gt;
|-&lt;br /&gt;
|1:00pm&lt;br /&gt;
|13:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00pm&lt;br /&gt;
|14:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00pm&lt;br /&gt;
|15:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00pm&lt;br /&gt;
|16:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00pm&lt;br /&gt;
|17:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00pm&lt;br /&gt;
|18:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00pm&lt;br /&gt;
|19:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00pm&lt;br /&gt;
|20:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00pm&lt;br /&gt;
|21:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00pm&lt;br /&gt;
|22:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00pm&lt;br /&gt;
|23:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00am midnight&lt;br /&gt;
|24:00&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13133</id>
		<title>Military Time Conversion Chart</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13133"/>
		<updated>2025-04-15T18:30:46Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Convert Military Time To Standard And Vice Versa ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin:auto; border-style: solid; border-width: 2px; border-color: black&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! 12 Hour !! 24 Hour&lt;br /&gt;
|-&lt;br /&gt;
|12:00am midnight&lt;br /&gt;
|00:00&lt;br /&gt;
|-&lt;br /&gt;
|1:00am&lt;br /&gt;
|01:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00am&lt;br /&gt;
|02:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00am&lt;br /&gt;
|03:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00am&lt;br /&gt;
|04:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00am&lt;br /&gt;
|05:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00am&lt;br /&gt;
|06:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00am&lt;br /&gt;
|07:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00am&lt;br /&gt;
|08:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00am&lt;br /&gt;
|09:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00am&lt;br /&gt;
|10:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00am&lt;br /&gt;
|11:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00pm noon&lt;br /&gt;
|12:00&lt;br /&gt;
|-&lt;br /&gt;
|1:00pm&lt;br /&gt;
|13:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00pm&lt;br /&gt;
|14:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00pm&lt;br /&gt;
|15:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00pm&lt;br /&gt;
|16:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00pm&lt;br /&gt;
|17:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00pm&lt;br /&gt;
|18:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00pm&lt;br /&gt;
|19:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00pm&lt;br /&gt;
|20:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00pm&lt;br /&gt;
|21:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00pm&lt;br /&gt;
|22:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00pm&lt;br /&gt;
|23:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00am midnight&lt;br /&gt;
|24:00&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13132</id>
		<title>Military Time Conversion Chart</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13132"/>
		<updated>2025-04-15T18:28:25Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Convert Military Time To Standard And Vice Versa ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin:auto; border-style: solid; border-color: black&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! 12 Hour !! 24 Hour&lt;br /&gt;
|-&lt;br /&gt;
|12:00am midnight&lt;br /&gt;
|00:00&lt;br /&gt;
|-&lt;br /&gt;
|1:00am&lt;br /&gt;
|01:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00am&lt;br /&gt;
|02:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00am&lt;br /&gt;
|03:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00am&lt;br /&gt;
|04:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00am&lt;br /&gt;
|05:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00am&lt;br /&gt;
|06:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00am&lt;br /&gt;
|07:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00am&lt;br /&gt;
|08:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00am&lt;br /&gt;
|09:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00am&lt;br /&gt;
|10:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00am&lt;br /&gt;
|11:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00pm noon&lt;br /&gt;
|12:00&lt;br /&gt;
|-&lt;br /&gt;
|1:00pm&lt;br /&gt;
|13:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00pm&lt;br /&gt;
|14:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00pm&lt;br /&gt;
|15:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00pm&lt;br /&gt;
|16:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00pm&lt;br /&gt;
|17:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00pm&lt;br /&gt;
|18:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00pm&lt;br /&gt;
|19:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00pm&lt;br /&gt;
|20:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00pm&lt;br /&gt;
|21:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00pm&lt;br /&gt;
|22:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00pm&lt;br /&gt;
|23:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00am midnight&lt;br /&gt;
|24:00&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13131</id>
		<title>Military Time Conversion Chart</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13131"/>
		<updated>2025-04-15T18:27:34Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Convert Military Time To Standard And Vice Versa ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin:auto; border-style: solid&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! 12 Hour !! 24 Hour&lt;br /&gt;
|-&lt;br /&gt;
|12:00am midnight&lt;br /&gt;
|00:00&lt;br /&gt;
|-&lt;br /&gt;
|1:00am&lt;br /&gt;
|01:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00am&lt;br /&gt;
|02:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00am&lt;br /&gt;
|03:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00am&lt;br /&gt;
|04:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00am&lt;br /&gt;
|05:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00am&lt;br /&gt;
|06:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00am&lt;br /&gt;
|07:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00am&lt;br /&gt;
|08:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00am&lt;br /&gt;
|09:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00am&lt;br /&gt;
|10:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00am&lt;br /&gt;
|11:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00pm noon&lt;br /&gt;
|12:00&lt;br /&gt;
|-&lt;br /&gt;
|1:00pm&lt;br /&gt;
|13:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00pm&lt;br /&gt;
|14:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00pm&lt;br /&gt;
|15:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00pm&lt;br /&gt;
|16:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00pm&lt;br /&gt;
|17:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00pm&lt;br /&gt;
|18:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00pm&lt;br /&gt;
|19:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00pm&lt;br /&gt;
|20:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00pm&lt;br /&gt;
|21:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00pm&lt;br /&gt;
|22:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00pm&lt;br /&gt;
|23:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00am midnight&lt;br /&gt;
|24:00&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13130</id>
		<title>Military Time Conversion Chart</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13130"/>
		<updated>2025-04-15T18:21:39Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Convert Military Time To Standard And Vice Versa ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin:auto&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! 12 Hour !! 24 Hour&lt;br /&gt;
|-&lt;br /&gt;
|12:00am midnight&lt;br /&gt;
|00:00&lt;br /&gt;
|-&lt;br /&gt;
|1:00am&lt;br /&gt;
|01:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00am&lt;br /&gt;
|02:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00am&lt;br /&gt;
|03:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00am&lt;br /&gt;
|04:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00am&lt;br /&gt;
|05:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00am&lt;br /&gt;
|06:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00am&lt;br /&gt;
|07:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00am&lt;br /&gt;
|08:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00am&lt;br /&gt;
|09:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00am&lt;br /&gt;
|10:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00am&lt;br /&gt;
|11:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00pm noon&lt;br /&gt;
|12:00&lt;br /&gt;
|-&lt;br /&gt;
|1:00pm&lt;br /&gt;
|13:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00pm&lt;br /&gt;
|14:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00pm&lt;br /&gt;
|15:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00pm&lt;br /&gt;
|16:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00pm&lt;br /&gt;
|17:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00pm&lt;br /&gt;
|18:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00pm&lt;br /&gt;
|19:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00pm&lt;br /&gt;
|20:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00pm&lt;br /&gt;
|21:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00pm&lt;br /&gt;
|22:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00pm&lt;br /&gt;
|23:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00am midnight&lt;br /&gt;
|24:00&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13129</id>
		<title>Military Time Conversion Chart</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13129"/>
		<updated>2025-04-15T18:19:35Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Convert Military Time To Standard And Vice Versa ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin:auto&amp;quot;&lt;br /&gt;
! 12 Hour !! 24 Hour&lt;br /&gt;
|-&lt;br /&gt;
|12:00am midnight&lt;br /&gt;
|00:00&lt;br /&gt;
|-&lt;br /&gt;
|1:00am&lt;br /&gt;
|01:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00am&lt;br /&gt;
|02:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00am&lt;br /&gt;
|03:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00am&lt;br /&gt;
|04:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00am&lt;br /&gt;
|05:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00am&lt;br /&gt;
|06:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00am&lt;br /&gt;
|07:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00am&lt;br /&gt;
|08:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00am&lt;br /&gt;
|09:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00am&lt;br /&gt;
|10:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00am&lt;br /&gt;
|11:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00pm noon&lt;br /&gt;
|12:00&lt;br /&gt;
|-&lt;br /&gt;
|1:00pm&lt;br /&gt;
|13:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00pm&lt;br /&gt;
|14:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00pm&lt;br /&gt;
|15:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00pm&lt;br /&gt;
|16:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00pm&lt;br /&gt;
|17:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00pm&lt;br /&gt;
|18:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00pm&lt;br /&gt;
|19:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00pm&lt;br /&gt;
|20:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00pm&lt;br /&gt;
|21:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00pm&lt;br /&gt;
|22:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00pm&lt;br /&gt;
|23:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00am midnight&lt;br /&gt;
|24:00&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13128</id>
		<title>Military Time Conversion Chart</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Military_Time_Conversion_Chart&amp;diff=13128"/>
		<updated>2025-04-15T18:15:49Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Convert Military Time To Standard And Vice Versa ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin:auto&amp;quot;&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot;| 12 Hour&lt;br /&gt;
! 24 Hour&lt;br /&gt;
|-&lt;br /&gt;
|12:00am midnight&lt;br /&gt;
|00:00&lt;br /&gt;
|-&lt;br /&gt;
|1:00am&lt;br /&gt;
|01:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00am&lt;br /&gt;
|02:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00am&lt;br /&gt;
|03:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00am&lt;br /&gt;
|04:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00am&lt;br /&gt;
|05:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00am&lt;br /&gt;
|06:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00am&lt;br /&gt;
|07:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00am&lt;br /&gt;
|08:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00am&lt;br /&gt;
|09:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00am&lt;br /&gt;
|10:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00am&lt;br /&gt;
|11:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00pm noon&lt;br /&gt;
|12:00&lt;br /&gt;
|-&lt;br /&gt;
|1:00pm&lt;br /&gt;
|13:00&lt;br /&gt;
|-&lt;br /&gt;
|2:00pm&lt;br /&gt;
|14:00&lt;br /&gt;
|-&lt;br /&gt;
|3:00pm&lt;br /&gt;
|15:00&lt;br /&gt;
|-&lt;br /&gt;
|4:00pm&lt;br /&gt;
|16:00&lt;br /&gt;
|-&lt;br /&gt;
|5:00pm&lt;br /&gt;
|17:00&lt;br /&gt;
|-&lt;br /&gt;
|6:00pm&lt;br /&gt;
|18:00&lt;br /&gt;
|-&lt;br /&gt;
|7:00pm&lt;br /&gt;
|19:00&lt;br /&gt;
|-&lt;br /&gt;
|8:00pm&lt;br /&gt;
|20:00&lt;br /&gt;
|-&lt;br /&gt;
|9:00pm&lt;br /&gt;
|21:00&lt;br /&gt;
|-&lt;br /&gt;
|10:00pm&lt;br /&gt;
|22:00&lt;br /&gt;
|-&lt;br /&gt;
|11:00pm&lt;br /&gt;
|23:00&lt;br /&gt;
|-&lt;br /&gt;
|12:00am midnight&lt;br /&gt;
|24:00&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=Other_Tools&amp;diff=13127</id>
		<title>Other Tools</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=Other_Tools&amp;diff=13127"/>
		<updated>2025-04-15T18:13:34Z</updated>

		<summary type="html">&lt;p&gt;Admin: Created other tools page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Other tools that don&#039;t fall into the other categories.&lt;br /&gt;
&lt;br /&gt;
[[Military Time Conversion Chart]] - Chart to convert to and from 24 hour time.&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=MediaWiki:Sidebar&amp;diff=13126</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=MediaWiki:Sidebar&amp;diff=13126"/>
		<updated>2025-04-15T18:12:11Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* navigation&lt;br /&gt;
** Main_Page|Wiki Home Page&lt;br /&gt;
** Special:RecentChanges|Recent changes&lt;br /&gt;
** Special:Random|randompage&lt;br /&gt;
** helppage|help&lt;br /&gt;
&lt;br /&gt;
* Topics&lt;br /&gt;
** cPanel|cPanel&lt;br /&gt;
** Logs | Logs&lt;br /&gt;
** Linux_Commands|Linux Commands&lt;br /&gt;
** Other Software|Other Software&lt;br /&gt;
** Plesk|Plesk&lt;br /&gt;
** Procedures|Procedures&lt;br /&gt;
&lt;br /&gt;
* Other&lt;br /&gt;
** bash_script | Bash Script&lt;br /&gt;
** Other_Tools | Other Tools&lt;br /&gt;
** Regular_Expressions | Regular Expressions&lt;br /&gt;
** Python | Python&lt;br /&gt;
&lt;br /&gt;
* TOOLBOX&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=MediaWiki:Common.css&amp;diff=13125</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=MediaWiki:Common.css&amp;diff=13125"/>
		<updated>2025-04-14T19:09:42Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
/* Format headings */&lt;br /&gt;
h1 {&lt;br /&gt;
    text-align: center;&lt;br /&gt;
    font-weight: bold;&lt;br /&gt;
    font-size: 2.5em;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
    color: white;&lt;br /&gt;
    background: #517397;&lt;br /&gt;
    border: 1px #517397;&lt;br /&gt;
    padding-top: 1em;&lt;br /&gt;
    padding-bottom: 1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
h2 {&lt;br /&gt;
    text-align: left;&lt;br /&gt;
    font-weight: bold;&lt;br /&gt;
    font-size: 2em;&lt;br /&gt;
    color: white;&lt;br /&gt;
    background: #517397;&lt;br /&gt;
    border: 1px #517397;&lt;br /&gt;
    padding-top: 0.5em;&lt;br /&gt;
    padding-bottom: 0.5em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
h3 {&lt;br /&gt;
    text-align: left;&lt;br /&gt;
    font-weight: bold;&lt;br /&gt;
    font-size: 1.5em;&lt;br /&gt;
    color: white;&lt;br /&gt;
    background: #517397;&lt;br /&gt;
    border: 1px #517397;&lt;br /&gt;
    padding-top: 0.25em;&lt;br /&gt;
    padding-bottom: 0.25em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
h4 {&lt;br /&gt;
    text-align: left;&lt;br /&gt;
    font-weight: bold;&lt;br /&gt;
    font-size: 1.25em;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wiki.jedisaber.com/index.php?title=MediaWiki:Common.css&amp;diff=13124</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://wiki.jedisaber.com/index.php?title=MediaWiki:Common.css&amp;diff=13124"/>
		<updated>2025-04-14T19:07:06Z</updated>

		<summary type="html">&lt;p&gt;Admin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
/* Format headings */&lt;br /&gt;
h1 {&lt;br /&gt;
    text-align: center;&lt;br /&gt;
    font-weight: bold;&lt;br /&gt;
    font-size: 2.5em;&lt;br /&gt;
    color: white;&lt;br /&gt;
    background: #517397;&lt;br /&gt;
    border: 1px #517397;&lt;br /&gt;
    padding-top: 1em;&lt;br /&gt;
    padding-bottom: 1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
h2 {&lt;br /&gt;
    text-align: left;&lt;br /&gt;
    font-weight: bold;&lt;br /&gt;
    font-size: 2em;&lt;br /&gt;
    color: white;&lt;br /&gt;
    text-decoration: underline;&lt;br /&gt;
    background: #517397;&lt;br /&gt;
    border: 1px #517397;&lt;br /&gt;
    padding-top: 0.5em;&lt;br /&gt;
    padding-bottom: 0.5em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
h3 {&lt;br /&gt;
    text-align: left;&lt;br /&gt;
    font-weight: bold;&lt;br /&gt;
    font-size: 1.5em;&lt;br /&gt;
    color: white;&lt;br /&gt;
    text-decoration: underline;&lt;br /&gt;
    background: #517397;&lt;br /&gt;
    border: 1px #517397;&lt;br /&gt;
    padding-top: 0.25em;&lt;br /&gt;
    padding-bottom: 0.25em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
h4 {&lt;br /&gt;
    text-align: left;&lt;br /&gt;
    font-weight: bold;&lt;br /&gt;
    font-size: 1.25em;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
</feed>