.profile: load .bashrc when bash is called as a login shell
[config/sh.git] / .shinit
1 #!/bin/sh
2
3 if [ "$(id -u)" -eq 0 ]; then
4   PS1='# '
5 else
6   PS1='$ '
7 fi
8
9 alias ll='ls -al'
10 alias l='ls -l'