X-Git-Url: https://git.distorted.org.uk/~mdw/profile/blobdiff_plain/59c9c0e467534a6ee70b6f8fa2e6ed16f12338a9..6852ff28976af3e13b40f565114fd19307b2406a:/dot/bashrc diff --git a/dot/bashrc b/dot/bashrc index c39392a..c26fad3 100644 --- a/dot/bashrc +++ b/dot/bashrc @@ -35,8 +35,8 @@ if [ -t 0 ]; then ## highlight when I'm running as some other user. Highlight when this ## isn't the outermost shell on the terminal. if (( EUID == 0 )); then - left=`echo « | iconv -f utf8 -t //translit` - right=`echo » | iconv -f utf8 -t //translit` + left=`echo « | iconv -f UTF-8 -t //translit` + right=`echo » | iconv -f UTF-8 -t //translit` else case $USER in mdw|mwooding) u="" left="[" right="]" ;; @@ -98,7 +98,10 @@ alias cx='chmod a+x' alias which="command -v" alias rc="rc -l" alias ssync="rsync -e ssh" -alias rootly=$__MDW_ROOTLY +rootly () { + case $# in 0) set -- "${SHELL-/bin/sh}" ;; esac + $__MDW_ROOTLY "$@" +} alias r=rootly alias re="rootly $EDITOR" alias pstree="pstree -hl"