Outils pour utilisateurs

Outils du site


linux:installation:bashrc

Ceci est une ancienne révision du document !


Table des matières

Mon fichier bashrc

yeah.sh
  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 ======
linux/installation/bashrc.1662209867.txt.gz · Dernière modification : 2022/09/03 12:57 de tutospisto