Bash


1 Overview

This file is minimal because we use Zsh for our own personal shell. That being said, historically we've used bashrc for work computers in the cloud which had annoying Bash defaults.

bashrc
🎯 bash/.bashrc
export HISTCONTROL=ignoreboth:erasedups
set -o vi

alias q='exit'

The Makefile rule creates a symlink at $HOME/.bashrc which points to bashrc up above.

Makefile-bash
bash:
	ln -fs ${C}/bash/.bashrc ${H}

Page metrics

Tangled files (1)

  1. bash/.bashrc

Named cells (2)

  1. Makefile-bash
  2. bashrc