minix/etc/shrc
2025-05-30 22:49:16 -07:00

20 lines
473 B
Plaintext

#
# System-wide .shrc file for sh(1).
ll(){ ls -l ${1+"$@"}; }
case "$-" in *i*)
if /bin/test -z "${HOST}"; then
HOST="$(hostname)"
fi
# hostname is set to the ip address by default on MINIX, so
# don't truncate on the first dot.
#PS1="${HOST%%.*}$PS1"
PS1="${HOST}$PS1"
set -o emacs
# 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