til/Applications/bash.md

21 lines
520 B
Markdown
Raw Normal View History

2020-05-08 18:38:55 +00:00
# Bash
Read [Default Keyboard Shortcuts for Bash](https://catonmat.net/ftp/readline-emacs-editing-mode-cheat-sheet.pdf).
2020-05-09 18:30:08 +00:00
Bash completion:
| Distribution | Package |
| ------------ | ----------------- |
| Archlinux | `bash-completion` |
| Ubuntu | `bash-completion` |
2020-05-08 18:38:55 +00:00
Add to `~/.bashrc`:
```bash
export HISTCONTROL=ignoreboth:erasedups
export HISTIGNORE="cd:cd *:ls:ls *:pwd:exit"
2020-05-09 18:30:08 +00:00
2020-05-10 16:22:51 +00:00
[[ -f /usr/share/bash-completion/bash_completion ]] && \
2020-05-09 18:30:08 +00:00
source /usr/share/bash-completion/bash_completion
2020-05-08 18:38:55 +00:00
```