Outils pour utilisateurs

Outils du site


linux:installation:bashrc

Ceci est une ancienne révision du document !


Mon fichier bashrc

bashrc.txt
  1. # ~/.bashrc: executed by bash(1) for non-login shells.
  2.  
  3. # Note: PS1 and umask are already set in /etc/profile. You should not
  4. # need this unless you want different defaults for root.
  5. # PS1='${debian_chroot:+($debian_chroot)}\h:\w\$ '
  6. # umask 022
  7.  
  8.  
  9. # set a fancy prompt (non-color, unless we know we "want" color)
  10. case "$TERM" in
  11. xterm-color|*-256color) color_prompt=yes;;
  12. esac
  13.  
  14. # uncomment for a colored prompt, if the terminal has the capability; turned
  15. # off by default to not distract the user: the focus in a terminal window
  16. # should be on the output of commands, not on the prompt
  17. #force_color_prompt=yes
  18.  
  19. if [ -n "$force_color_prompt" ]; then
  20. if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
  21. # We have color support; assume it's compliant with Ecma-48
  22. # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
  23. # a case would tend to support setf rather than setaf.)
  24. color_prompt=yes
  25. else
  26. color_prompt=
  27. fi
  28. fi
  29.  
  30. if [ "$color_prompt" = yes ]; then
  31. PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
  32. else
  33. PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
  34. fi
  35. unset color_prompt force_color_prompt
  36.  
  37. # If this is an xterm set the title to user@host:dir
  38. case "$TERM" in
  39. xterm*|rxvt*)
  40. PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
  41. ;;
  42. *)
  43. ;;
  44. esac
  45.  
  46. # enable color support of ls and also add handy aliases
  47. if [ -x /usr/bin/dircolors ]; then
  48. test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
  49. alias ls='ls --color=auto'
  50. #alias dir='dir --color=auto'
  51. #alias vdir='vdir --color=auto'
  52. #alias grep='grep --color=auto'
  53. #alias fgrep='fgrep --color=auto'
  54. #alias egrep='egrep --color=auto'
  55. fi
  56.  
  57. # colored GCC warnings and errors
  58. #export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
  59.  
  60.  
  61. # You may uncomment the following lines if you want `ls' to be colorized:
  62. # export LS_OPTIONS='--color=auto'
  63. # eval "`dircolors`"
  64. # alias ls='ls $LS_OPTIONS'
  65. # alias ll='ls $LS_OPTIONS -l'
  66. # alias l='ls $LS_OPTIONS -lA'
  67. #
  68. # Some more alias to avoid making mistakes:
  69. # alias rm='rm -i'
  70. # alias cp='cp -i'
  71. # alias mv='mv -i'
  72.  
  73. # ~/.bashrc: executed by bash(1) for non-login shells.
  74.  
  75. export PS1='\h:\w\$ '
  76. umask 022
  77.  
  78. # You may uncomment the following lines if you want `ls' to be colorized:
  79. # export LS_OPTIONS='--color=auto'
  80. # eval "`dircolors`"
  81. # alias ls='ls $LS_OPTIONS'
  82. # alias ll='ls $LS_OPTIONS -l'
  83. # alias l='ls $LS_OPTIONS -lA'
  84.  
  85. # Some more alias to avoid making mistakes:
  86. # alias rm='rm -i'
  87. # alias cp='cp -i'
  88. # alias mv='mv -i'
  89.  
  90. alias maj='apt-get update && apt-get upgrade'
  91. alias agi='apt-get install'
  92. alias watchftp='watch -n 1 "ps ax | grep vsftpd | grep -v grep"'
  93. alias bigrestart='/etc/init.d/svnserve restart && /etc/init.d/apache2 restart && /etc/init.d/mongrel_cluster res>
  94.  
  95. # Calendrier du mois avec le jour en cours en rouge:
  96. alias cal='var=$(/usr/bin/cal -m); echo "${var/$(date +%-d)/$(echo -e "\033[1;31m$(date +%-d)\033[0m")}"'
  97.  
  98. #Les classiques
  99. alias ll='ls -l -h'
  100. alias la='ls -A -h'
  101. alias l='ls -CF -h'
  102. alias lla='ls -la -h'
  103.  
  104. #Classe par date
  105. alias lldate='ls -l -t -h'
  106.  
  107. #classe par date (inversé)
  108. #permet d'avoir le plus recent fichier/dossier sous les yeux
  109. alias llrecent='ls -l -tr -h'
  110.  
  111. #Avoir seulement les repertoires
  112. alias llrep='ls -l -d */ -h'
  113.  
  114. #Repertoires les plus recents
  115. alias llrecentrep='ls -l -d */ -tr -h'
  116.  
  117. #Avoir seulement les fichiers/dossiers caches
  118. alias llcache='ls -li -A -h --ignore=^"[^\.]"'
  119.  
  120. #Parce qu'on aime bien voir ce qu'il se passe
  121. alias rm='rm --verbose'
  122. alias mv='mv --verbose'
  123. alias cp='cp --verbose'
  124.  
  125. #Surligne les patterns retrouvés
  126. alias grep='grep -i --color'
  127.  
  128. #Surligne les patterns retrouvés
  129. alias zgrep='zgrep -i --color'
  130.  
  131. #Ligne de separation visuelle
  132. alias mark='echo ================================================'
  133.  
  134. # Arborescence
  135. alias tree="find . | sed 's/[^/]*\//| /g;s/| *\([^| ]\)/+--- \1/'"
  136.  
  137. #Cree le repertoire et va dedans
  138. function mkcd() {
  139. mkdir $1 && cd $1
  140. }
  141.  
  142. # repeat n times command
  143. function repeat()
  144. {
  145. local i max
  146. max=$1; shift;
  147. for ((i=1; i <= max ; i++)); do
  148. eval "$@";
  149. done
  150. }
  151.  
  152. # Comment in the above and uncomment this below for a color prompt
  153. PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
  154.  
  155. #Lors du login
  156. echo "==================================="
  157. echo Bonjour $USER, nous sommes le `date +"%A %e %B %Y"`, et il est : `date +"%H"` H `date +"%M"`
  158. echo "==================================="
  159.  
  160. # Une ligne en bash ( affiche un alias au hasard )
  161. alias alr='let "n= $RANDOM % `alias | wc -l` + 1" && alias | sed -n "$n"p'
  162.  
  163. # Une autre : cmd [-n] ( les n commandes les plus utilisées, en ne tenant pas compte du sudo )
  164. function cmd {
  165. history | sed -e 's/sudo //' | cut -b8- | cut -d' ' -f1 | sort | uniq -c | sort -rg | head $1
  166. }

Fichier d’origine

bashrc_origine.txt
  1. # ~/.bashrc: executed by bash(1) for non-login shells.
  2. # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
  3. # for examples
  4.  
  5. # If not running interactively, don't do anything
  6. [ -z "$PS1" ] && return
  7.  
  8. # don't put duplicate lines in the history. See bash(1) for more options
  9. # don't overwrite GNU Midnight Commander's setting of `ignorespace'.
  10. HISTCONTROL=$HISTCONTROL${HISTCONTROL+:}ignoredups
  11. # ... or force ignoredups and ignorespace
  12. HISTCONTROL=ignoreboth
  13.  
  14. # append to the history file, don't overwrite it
  15. shopt -s histappend
  16.  
  17. # for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
  18.  
  19. # check the window size after each command and, if necessary,
  20. # update the values of LINES and COLUMNS.
  21. shopt -s checkwinsize
  22.  
  23. # make less more friendly for non-text input files, see lesspipe(1)
  24. #[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
  25.  
  26. # set variable identifying the chroot you work in (used in the prompt below)
  27. if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
  28. debian_chroot=$(cat /etc/debian_chroot)
  29. fi
  30.  
  31. # set a fancy prompt (non-color, unless we know we "want" color)
  32. case "$TERM" in
  33. xterm-color) color_prompt=yes;;
  34. esac
  35.  
  36. # uncomment for a colored prompt, if the terminal has the capability; turned
  37. # off by default to not distract the user: the focus in a terminal window
  38. # should be on the output of commands, not on the prompt
  39. #force_color_prompt=yes
  40.  
  41. if [ -n "$force_color_prompt" ]; then
  42. if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
  43. # We have color support; assume it's compliant with Ecma-48
  44. # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
  45. # a case would tend to support setf rather than setaf.)
  46. color_prompt=yes
  47. else
  48. color_prompt=
  49. fi
  50. fi
  51.  
  52. if [ "$color_prompt" = yes ]; then
  53. PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
  54. else
  55. PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
  56. fi
  57. unset color_prompt force_color_prompt
  58.  
  59. # If this is an xterm set the title to user@host:dir
  60. case "$TERM" in
  61. xterm*|rxvt*)
  62. PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
  63. ;;
  64. *)
  65. ;;
  66. esac
  67.  
  68. # enable color support of ls and also add handy aliases
  69. if [ -x /usr/bin/dircolors ]; then
  70. test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
  71. alias ls='ls --color=auto'
  72. #alias dir='dir --color=auto'
  73. #alias vdir='vdir --color=auto'
  74.  
  75. #alias grep='grep --color=auto'
  76. #alias fgrep='fgrep --color=auto'
  77. #alias egrep='egrep --color=auto'
  78. fi
  79.  
  80. # some more ls aliases
  81. #alias ll='ls -l'
  82. #alias la='ls -A'
  83. #alias l='ls -CF'
  84.  
  85. # Alias definitions.
  86. # You may want to put all your additions into a separate file like
  87. # ~/.bash_aliases, instead of adding them here directly.
  88. # See /usr/share/doc/bash-doc/examples in the bash-doc package.
  89.  
  90. if [ -f ~/.bash_aliases ]; then
  91. . ~/.bash_aliases
  92. fi
  93.  
  94. # enable programmable completion features (you don't need to enable
  95. # this, if it's already enabled in /etc/bash.bashrc and /etc/profile
  96. # sources /etc/bash.bashrc).
  97. if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
  98. . /etc/bash_completion
  99. fi
linux/installation/bashrc.1662210035.txt.gz · Dernière modification : 2022/09/03 13:00 de tutospisto