| 12345678910111213141516171819 | #!/bin/bash# General settingsexport EDITOR=vimexport CLICOLOR=1# Prefer the Queen's English and use UTF-8.export LC_ALL='en_GB.UTF-8';export LANG='en_GB';# don't put duplicate lines in the historyexport HISTCONTROL=ignoredups# let the history ignore the following commandsexport HISTIGNORE="ls:ll:la:pwd:clear:h:j"# append to the history file rather than overwritingshopt -s histappendshopt -s nocaseglob;
 |