Blob


1 # rc -- run commands
3 Althought it's not my interactive shell, I do like plan9' rc. (well,
4 the first version was for UNIX if I recall correctly, but...)
6 My configuration is pretty small, just tweak the prompt
8 prompt=('% ' '')
10 make sure $user and $home are defined
12 user=$USER
13 home=$HOME
15 and some aliases
17 fn git { env git --no-pager $* }
18 fn m { make $* }
20 oh, and make the prompt executable!
22 fn % { $* }