<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://wiki.zenerves.net/skins/common/feed.css?301"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
		<id>http://wiki.zenerves.net/index.php?action=history&amp;feed=atom&amp;title=Bash</id>
		<title>Bash - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.zenerves.net/index.php?action=history&amp;feed=atom&amp;title=Bash"/>
		<link rel="alternate" type="text/html" href="http://wiki.zenerves.net/index.php?title=Bash&amp;action=history"/>
		<updated>2026-08-04T08:12:04Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.17.0</generator>

	<entry>
		<id>http://wiki.zenerves.net/index.php?title=Bash&amp;diff=78&amp;oldid=prev</id>
		<title>Admin: 1 revision</title>
		<link rel="alternate" type="text/html" href="http://wiki.zenerves.net/index.php?title=Bash&amp;diff=78&amp;oldid=prev"/>
				<updated>2011-10-14T23:59:09Z</updated>
		
		<summary type="html">&lt;p&gt;1 revision&lt;/p&gt;
&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
		&lt;tr valign='top'&gt;
		&lt;td colspan='1' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan='1' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 23:59, 14 October 2011&lt;/td&gt;
		&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	<entry>
		<id>http://wiki.zenerves.net/index.php?title=Bash&amp;diff=77&amp;oldid=prev</id>
		<title>Lola at 21:11, 14 October 2011</title>
		<link rel="alternate" type="text/html" href="http://wiki.zenerves.net/index.php?title=Bash&amp;diff=77&amp;oldid=prev"/>
				<updated>2011-10-14T21:11:50Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;http://www.funtoo.org/en/articles/linux/tips/prompt/&lt;br /&gt;
&lt;br /&gt;
http://www.thegeekstuff.com/2008/09/bash-shell-ps1-10-examples-to-make-your-linux-prompt-like-angelina-jolie/&lt;br /&gt;
&lt;br /&gt;
&amp;lt;&amp;lt;From man bash&amp;gt;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
PROMPTING&lt;br /&gt;
       When executing interactively, bash displays the primary prompt PS1 when&lt;br /&gt;
       it is ready to read a command, and the secondary  prompt  PS2  when  it&lt;br /&gt;
       needs  more  input  to  complete  a  command.  Bash allows these prompt&lt;br /&gt;
       strings to be customized by inserting  a  number  of  backslash-escaped&lt;br /&gt;
       special characters that are decoded as follows:&lt;br /&gt;
&lt;br /&gt;
              \a     an ASCII bell character (07)&lt;br /&gt;
              \d     the  date  in &amp;quot;Weekday Month Date&amp;quot; format (e.g., &amp;quot;Tue May&lt;br /&gt;
                     26&amp;quot;)&lt;br /&gt;
              \D{format}&lt;br /&gt;
                     the format is passed to strftime(3)  and  the  result  is&lt;br /&gt;
                     inserted  into the prompt string; an empty format results&lt;br /&gt;
                     in a locale-specific time representation.  The braces are&lt;br /&gt;
                     required&lt;br /&gt;
              \e     an ASCII escape character (033)&lt;br /&gt;
              \h     the hostname up to the first ‘.’&lt;br /&gt;
              \H     the hostname&lt;br /&gt;
              \j     the number of jobs currently managed by the shell&lt;br /&gt;
              \l     the basename of the shell’s terminal device name&lt;br /&gt;
              \n     newline&lt;br /&gt;
              \r     carriage return&lt;br /&gt;
              \s     the  name  of  the shell, the basename of $0 (the portion&lt;br /&gt;
                     following the final slash)&lt;br /&gt;
              \t     the current time in 24-hour HH:MM:SS format&lt;br /&gt;
              \T     the current time in 12-hour HH:MM:SS format&lt;br /&gt;
              \@     the current time in 12-hour am/pm format&lt;br /&gt;
              \A     the current time in 24-hour HH:MM format&lt;br /&gt;
              \u     the username of the current user&lt;br /&gt;
              \v     the version of bash (e.g., 2.00)&lt;br /&gt;
              \V     the release of bash, version + patch level (e.g., 2.00.0)&lt;br /&gt;
              \w     the  current  working  directory,  with $HOME abbreviated&lt;br /&gt;
                     with a tilde&lt;br /&gt;
              \W     the basename of the current working directory, with $HOME&lt;br /&gt;
                     abbreviated with a tilde&lt;br /&gt;
              \!     the history number of this command&lt;br /&gt;
              \#     the command number of this command&lt;br /&gt;
              \$     if the effective UID is 0, a #, otherwise a $&lt;br /&gt;
              \nnn   the character corresponding to the octal number nnn&lt;br /&gt;
              \\     a backslash&lt;br /&gt;
              \[     begin  a sequence of non-printing characters, which could&lt;br /&gt;
                     be used to embed a terminal  control  sequence  into  the&lt;br /&gt;
                     prompt&lt;br /&gt;
              \]     end a sequence of non-printing characters&lt;br /&gt;
&lt;br /&gt;
       The  command  number  and the history number are usually different: the&lt;br /&gt;
       history number of a command is its position in the history list,  which&lt;br /&gt;
       may  include  commands  restored  from  the  history  file (see HISTORY&lt;br /&gt;
       below), while the command number is the position  in  the  sequence  of&lt;br /&gt;
       commands  executed  during the current shell session.  After the string&lt;br /&gt;
       is decoded, it is expanded via parameter expansion,  command  substitu-&lt;br /&gt;
       tion,  arithmetic expansion, and quote removal, subject to the value of&lt;br /&gt;
       the promptvars shell option (see the description of the  shopt  command&lt;br /&gt;
       under SHELL BUILTIN COMMANDS below).&lt;br /&gt;
&lt;br /&gt;
[[Category:Linux]] [[Category:Howtos]]&lt;/div&gt;</summary>
		<author><name>Lola</name></author>	</entry>

	</feed>