source: TOOLS/MachineEnvironment/curie/bashrc_curie @ 3934

Last change on this file since 3934 was 3934, checked in by jgipsl, 6 years ago
  • Add irene in bashrc and create bashrc_irene.
  • bashrc_curie: Removed functions for changing write permissions not needed by all users.


  • Property svn:executable set to *
File size: 1.1 KB
Line 
1# .bashrc
2
3#------------------------------------------------------
4# To get 644 file and 755 directory
5umask 0022
6
7#------------------------------------------------------
8PS1="\u@\h:\w> "
9
10# Source global definitions
11if [ -f /etc/bashrc ]; then
12    . /etc/bashrc
13fi
14
15#------------------------------------------------------
16# POST-TREATMENTS (FERRET/FAST/ATLAS + NCO + ...)
17#------------------------------------------------------
18. `ccc_home -u igcmg`/MachineEnvironment/curie/atlas_env_netcdf4.3.3.1_hdf5_parallel_curie_ksh
19
20#------------------------------------------------------
21export PATH="`ccc_home -u igcmg`/Tools/fcm/bin:`ccc_home -u igcmg`/Tools/curie/bin:$PATH"
22
23#------------------------------------------------------
24# User specific aliases and functions
25
26alias ls='ls --color'
27alias ll='ls -l --color'
28alias h='history'
29alias rm='rm -i'
30alias xterm='xterm -ls -sl 500 -sb -vb -fn "-*-fixed-medium-*-*-*-15-*-*-*-*-*-*-*" -bg LightGray -fg black -T $HOST -name $HOST'
31
32alias clean='find . \( -name ".*%" -o -name "*%" -o -name "*~" -o -name "core" -o -name "ferret.jnl*" -o -name "metafile*.plt*" \) -print -exec rm {} \;'
33
Note: See TracBrowser for help on using the repository browser.