annotate .bashrc @ 378:e44d214699be plus

color ls
author Henry S. Thompson <ht@inf.ed.ac.uk>
date Thu, 11 Jun 2026 21:09:38 +0100
parents 567ba6010658
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
1 # .bashrc
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
2
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
3 # Uncomment the following line if you don't like systemctl's auto-paging feature:
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
4 # export SYSTEMD_PAGER=
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
5
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
6 # Login for singularity
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
7 # Source global definitions
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
8
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
9 savehist ()
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
10 {
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
11 hc=$(history 1 | tr -d '\n' | cut -d ' ' -f 2);
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
12 if [ $((hc % ${HIST_FREQ-10})) = 0 ]; then
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
13 history -a;
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
14 fi
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
15 }
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
16
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
17 prompt ()
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
18 {
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
19 savehist
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
20 echo -ne '\033]0;'${HOSTNAME/-login/} ${PWD/$HOME/w\~}'\007'
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
21 }
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
22
378
e44d214699be color ls
Henry S. Thompson <ht@inf.ed.ac.uk>
parents: 237
diff changeset
23 alias ls="ls -F --color=auto"
e44d214699be color ls
Henry S. Thompson <ht@inf.ed.ac.uk>
parents: 237
diff changeset
24
72
fd9bcd759606 work with csing
Henry S. Thompson <ht@inf.ed.ac.uk>
parents: 9
diff changeset
25 PATH=$PATH:$HOME/.local/bin:$HOME/bin
fd9bcd759606 work with csing
Henry S. Thompson <ht@inf.ed.ac.uk>
parents: 9
diff changeset
26
0
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
27 if [ "$PS1" ]; then
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
28 echo "Singularity bash" 1>&2
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
29 # don't put duplicate lines or lines starting with space in the history.
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
30 # See bash(1) for more options
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
31 export HISTCONTROL=ignoreboth
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
32
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
33 # append to the history file, don't overwrite it
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
34 shopt -s histappend
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
35
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
36 # for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
37 export HISTSIZE=3000
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
38 export HISTFILESIZE=6000
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
39 export HISTIGNORE='[ ]*:&:[fb]g:exit'
72
fd9bcd759606 work with csing
Henry S. Thompson <ht@inf.ed.ac.uk>
parents: 9
diff changeset
40
fd9bcd759606 work with csing
Henry S. Thompson <ht@inf.ed.ac.uk>
parents: 9
diff changeset
41 # fix $W -> \$W after tab completion
fd9bcd759606 work with csing
Henry S. Thompson <ht@inf.ed.ac.uk>
parents: 9
diff changeset
42 shopt -u progcomp
fd9bcd759606 work with csing
Henry S. Thompson <ht@inf.ed.ac.uk>
parents: 9
diff changeset
43
0
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
44 fi
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
45
96
e1a05ead2b1c try to do csing correctly on compute nodes
Henry S. Thompson <ht@inf.ed.ac.uk>
parents: 72
diff changeset
46
9
05820245a047 work around problem with PROMPT_COMMAND
Henry S. Thompson <ht@inf.ed.ac.uk>
parents: 7
diff changeset
47 EDITOR=xemacs
0
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
48
96
e1a05ead2b1c try to do csing correctly on compute nodes
Henry S. Thompson <ht@inf.ed.ac.uk>
parents: 72
diff changeset
49
237
567ba6010658 csing disabled for now
Henry S. Thompson <ht@inf.ed.ac.uk>
parents: 98
diff changeset
50 # csing no longer needed, probably
567ba6010658 csing disabled for now
Henry S. Thompson <ht@inf.ed.ac.uk>
parents: 98
diff changeset
51 #if [ -d /work/y07/shared ]
567ba6010658 csing disabled for now
Henry S. Thompson <ht@inf.ed.ac.uk>
parents: 98
diff changeset
52 #then
567ba6010658 csing disabled for now
Henry S. Thompson <ht@inf.ed.ac.uk>
parents: 98
diff changeset
53 # . $HOME/.csing_init
567ba6010658 csing disabled for now
Henry S. Thompson <ht@inf.ed.ac.uk>
parents: 98
diff changeset
54 #fi
96
e1a05ead2b1c try to do csing correctly on compute nodes
Henry S. Thompson <ht@inf.ed.ac.uk>
parents: 72
diff changeset
55
e1a05ead2b1c try to do csing correctly on compute nodes
Henry S. Thompson <ht@inf.ed.ac.uk>
parents: 72
diff changeset
56
0
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
57
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
58 HHOME=/home/dc007/dc007/$(whoami)
bb5f1ea6cc5e getting started
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
59
9
05820245a047 work around problem with PROMPT_COMMAND
Henry S. Thompson <ht@inf.ed.ac.uk>
parents: 7
diff changeset
60 export PATH EDITOR HHOME