# System-wide .bashrc file for interactive bash(1) shells. # To enable the settings / commands in this file for login shells as well, # this file has to be sourced in /etc/profile. # If not running interactively, don't do anything [ -z "$PS1" ] && return # check the window size after each command and, if necessary, # update the values of LINES and COLUMNS. shopt -s checkwinsize # set variable identifying the chroot you work in (used in the prompt below) if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then debian_chroot=$(cat /etc/debian_chroot) fi # set a fancy prompt (non-color, overwrite the one in /etc/profile) PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' # Commented out, don't overwrite xterm -T "title" -n "icontitle" by default. # If this is an xterm set the title to user@host:dir #case "$TERM" in #xterm*|rxvt*) # PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD}\007"' # ;; #*) # ;; #esac # enable bash completion in interactive shells #if [ -f /etc/bash_completion ]; then # . /etc/bash_completion #fi #============================================================================== #compilateur ifort source /opt/intel/Compiler/11.0/074/bin/ifortvars.sh PATH=$PATH:/opt/intel/Compiler/11.0/074/bin export PATH #debugger ifort source /opt/intel/Compiler/11.0/074/bin/intel64/idbvars.sh PATH=$PATH:/opt/intel/Compiler/11.0/074/bin/intel64 export PATH #si ifort répond "cannot find g++" export LC_ALL=C #============================================================================== #wrapper ifort export PATH=/opt/intel/Compiler/11.0/074/bin:$PATH #export LD_LIBRARY_PATH=/opt/intel/Compiler/11.0/074/mkl/lib/em64t:$LD_LIBRARY_PATH export LD_LIBRARY_PATH=/usr/local/lib:/opt/intel/Compiler/11.0/074/lib/intel64:$LD_LIBRARY_PATH export MANPATH=/opt/intel/Compiler/11.0/074/man:$MANPATH