Tabatha .kshrc

From wikinotes

~/.kshrc

Configures KSH, similar to .bashrc


# Similar to .bashrc, .kshrc is run every time a korn shell is opened


# Alternate Keybindings:
	#Ctrl + L = clear
	bind -m '^L'=clear'^J'

	#Delete Key
	bind '^[[3~'=delete-char-forward

	#Home Key
	bind ~=beginning-of-line

	#End Key (must use Ctrl + end)
	bind ';5~'=end-of-line