til/Applications/bash.md

13 lines
298 B
Markdown
Raw Normal View History

2020-05-08 18:38:55 +00:00
# Bash
Read [Bash](https://wiki.archlinux.org/index.php/Bash).
Read [Default Keyboard Shortcuts for Bash](https://catonmat.net/ftp/readline-emacs-editing-mode-cheat-sheet.pdf).
Add to `~/.bashrc`:
```bash
export HISTCONTROL=ignoreboth:erasedups
export HISTIGNORE="cd:cd *:ls:ls *:pwd:exit"
```