blob: c6aff478595943a0ae2cb81d10ece4a11c03d6ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $NetBSD: shrc,v 1.7 2010/12/27 03:38:52 christos Exp $
#
# System-wide .shrc file for sh(1).
ll(){ ls -lp ${1+"$@"}; }
case "$-" in *i*)
set -o emacs
/bin/test -z "${HOST}" && HOST="$(hostname)"
PS1='
'${HOST%%.*}
/bin/test "$(whoami)" = root && PS1=$PS1'# ' || PS1=$PS1'$ '
# change terminal title to working directory on prompt
case "$0,$TERM,$XTERM_SHELL" in
*ksh,screen,*) PS1=$PS1'$(safetitle "$PWD")' ;;
*ksh,*,/*) PS1=$PS1']0;$PWD' ;;
*) ;;
esac
# This file is used by shells that might not support
# set -o tabcomplete, so check before trying to use it.
( set -o tabcomplete 2>/dev/null ) && set -o tabcomplete
;;
esac
|