<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://znil.net/index.php?action=history&amp;feed=atom&amp;title=Ubuntu_14.04.x_Inhalt_der_.bashrc</id>
	<title>Ubuntu 14.04.x Inhalt der .bashrc - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://znil.net/index.php?action=history&amp;feed=atom&amp;title=Ubuntu_14.04.x_Inhalt_der_.bashrc"/>
	<link rel="alternate" type="text/html" href="https://znil.net/index.php?title=Ubuntu_14.04.x_Inhalt_der_.bashrc&amp;action=history"/>
	<updated>2026-05-08T10:13:50Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in znilwiki</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://znil.net/index.php?title=Ubuntu_14.04.x_Inhalt_der_.bashrc&amp;diff=7591&amp;oldid=prev</id>
		<title>BLinz: Die Seite wurde neu angelegt: „ Kategorie:Ubuntu &lt;source lang=&quot;bash&quot;&gt; # ~/.bashrc: executed by bash(1) for non-login shells. # see /usr/share/doc/bash/examples/startup-files (in the pack…“</title>
		<link rel="alternate" type="text/html" href="https://znil.net/index.php?title=Ubuntu_14.04.x_Inhalt_der_.bashrc&amp;diff=7591&amp;oldid=prev"/>
		<updated>2015-09-25T08:04:20Z</updated>

		<summary type="html">&lt;p&gt;Die Seite wurde neu angelegt: „ &lt;a href=&quot;/index.php?title=Kategorie:Ubuntu&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Kategorie:Ubuntu (Seite nicht vorhanden)&quot;&gt;Kategorie:Ubuntu&lt;/a&gt; &amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt; # ~/.bashrc: executed by bash(1) for non-login shells. # see /usr/share/doc/bash/examples/startup-files (in the pack…“&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&lt;br /&gt;
[[Kategorie:Ubuntu]]&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# ~/.bashrc: executed by bash(1) for non-login shells.&lt;br /&gt;
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)&lt;br /&gt;
# for examples&lt;br /&gt;
&lt;br /&gt;
# If not running interactively, don&amp;#039;t do anything&lt;br /&gt;
[ -z &amp;quot;$PS1&amp;quot; ] &amp;amp;&amp;amp; return&lt;br /&gt;
&lt;br /&gt;
# don&amp;#039;t put duplicate lines in the history. See bash(1) for more options&lt;br /&gt;
# ... or force ignoredups and ignorespace&lt;br /&gt;
HISTCONTROL=ignoredups:ignorespace&lt;br /&gt;
&lt;br /&gt;
# append to the history file, don&amp;#039;t overwrite it&lt;br /&gt;
shopt -s histappend&lt;br /&gt;
&lt;br /&gt;
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)&lt;br /&gt;
HISTSIZE=1000&lt;br /&gt;
HISTFILESIZE=2000&lt;br /&gt;
&lt;br /&gt;
# check the window size after each command and, if necessary,&lt;br /&gt;
# update the values of LINES and COLUMNS.&lt;br /&gt;
shopt -s checkwinsize&lt;br /&gt;
&lt;br /&gt;
# make less more friendly for non-text input files, see lesspipe(1)&lt;br /&gt;
[ -x /usr/bin/lesspipe ] &amp;amp;&amp;amp; eval &amp;quot;$(SHELL=/bin/sh lesspipe)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# set variable identifying the chroot you work in (used in the prompt below)&lt;br /&gt;
if [ -z &amp;quot;$debian_chroot&amp;quot; ] &amp;amp;&amp;amp; [ -r /etc/debian_chroot ]; then&lt;br /&gt;
    debian_chroot=$(cat /etc/debian_chroot)&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# set a fancy prompt (non-color, unless we know we &amp;quot;want&amp;quot; color)&lt;br /&gt;
case &amp;quot;$TERM&amp;quot; in&lt;br /&gt;
    xterm-color) color_prompt=yes;;&lt;br /&gt;
esac&lt;br /&gt;
&lt;br /&gt;
# uncomment for a colored prompt, if the terminal has the capability; turned&lt;br /&gt;
# off by default to not distract the user: the focus in a terminal window&lt;br /&gt;
# should be on the output of commands, not on the prompt&lt;br /&gt;
force_color_prompt=yes&lt;br /&gt;
&lt;br /&gt;
if [ -n &amp;quot;$force_color_prompt&amp;quot; ]; then&lt;br /&gt;
    if [ -x /usr/bin/tput ] &amp;amp;&amp;amp; tput setaf 1 &amp;gt;&amp;amp;/dev/null; then&lt;br /&gt;
        # We have color support; assume it&amp;#039;s compliant with Ecma-48&lt;br /&gt;
        # (ISO/IEC-6429). (Lack of such support is extremely rare, and such&lt;br /&gt;
        # a case would tend to support setf rather than setaf.)&lt;br /&gt;
        color_prompt=yes&lt;br /&gt;
    else&lt;br /&gt;
        color_prompt=&lt;br /&gt;
    fi&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
if [ &amp;quot;$color_prompt&amp;quot; = yes ]; then&lt;br /&gt;
    PS1=&amp;#039;${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ &amp;#039;&lt;br /&gt;
else&lt;br /&gt;
    PS1=&amp;#039;${debian_chroot:+($debian_chroot)}\u@\h:\w\$ &amp;#039;&lt;br /&gt;
fi&lt;br /&gt;
unset color_prompt force_color_prompt&lt;br /&gt;
&lt;br /&gt;
# If this is an xterm set the title to user@host:dir&lt;br /&gt;
case &amp;quot;$TERM&amp;quot; in&lt;br /&gt;
xterm*|rxvt*)&lt;br /&gt;
    PS1=&amp;quot;\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1&amp;quot;&lt;br /&gt;
    ;;&lt;br /&gt;
*)&lt;br /&gt;
    ;;&lt;br /&gt;
esac&lt;br /&gt;
&lt;br /&gt;
# enable color support of ls and also add handy aliases&lt;br /&gt;
if [ -x /usr/bin/dircolors ]; then&lt;br /&gt;
    test -r ~/.dircolors &amp;amp;&amp;amp; eval &amp;quot;$(dircolors -b ~/.dircolors)&amp;quot; || eval &amp;quot;$(dircolors -b)&amp;quot;&lt;br /&gt;
    alias ls=&amp;#039;ls --color=auto&amp;#039;&lt;br /&gt;
    #alias dir=&amp;#039;dir --color=auto&amp;#039;&lt;br /&gt;
    #alias vdir=&amp;#039;vdir --color=auto&amp;#039;&lt;br /&gt;
&lt;br /&gt;
    alias grep=&amp;#039;grep --color=auto&amp;#039;&lt;br /&gt;
    alias fgrep=&amp;#039;fgrep --color=auto&amp;#039;&lt;br /&gt;
    alias egrep=&amp;#039;egrep --color=auto&amp;#039;&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# some more ls aliases&lt;br /&gt;
alias ll=&amp;#039;ls -alF&amp;#039;&lt;br /&gt;
alias la=&amp;#039;ls -A&amp;#039;&lt;br /&gt;
alias l=&amp;#039;ls -CF&amp;#039;&lt;br /&gt;
&lt;br /&gt;
# Alias definitions.&lt;br /&gt;
# You may want to put all your additions into a separate file like&lt;br /&gt;
# ~/.bash_aliases, instead of adding them here directly.&lt;br /&gt;
# See /usr/share/doc/bash-doc/examples in the bash-doc package.&lt;br /&gt;
&lt;br /&gt;
if [ -f ~/.bash_aliases ]; then&lt;br /&gt;
    . ~/.bash_aliases&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# enable programmable completion features (you don&amp;#039;t need to enable&lt;br /&gt;
# this, if it&amp;#039;s already enabled in /etc/bash.bashrc and /etc/profile&lt;br /&gt;
# sources /etc/bash.bashrc).&lt;br /&gt;
#if [ -f /etc/bash_completion ] &amp;amp;&amp;amp; ! shopt -oq posix; then&lt;br /&gt;
#    . /etc/bash_completion&lt;br /&gt;
#fi&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>BLinz</name></author>
	</entry>
</feed>