haiku/data/etc/profile
Zach Dykstra 26d22ee8dc shell: remove extraneous/conflicting function
The 'whence' function defined in /etc/profile serves a limited purpose
with Bash as the default shell. Bash already provides
which/type/command as built-ins, which the function simply wraps.

Additionally, zsh has a built-in 'whence' command, which is masked by
the definition in /etc/profile. The function does not work under zsh,
breaking core zsh functionality as a result.

Fixes #18612

Change-Id: Ia34d95ffd58b2cb06d71145a217a9017657fa4a3
Reviewed-on: https://review.haiku-os.org/c/haiku/+/6979
Reviewed-by: Adrien Destugues <pulkomandy@pulkomandy.tk>
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
2023-10-04 16:53:30 +00:00

71 lines
1.3 KiB
Bash

#
# Administrative startup for /bin/sh
# Place user customizations in ~/config/settings/profile
#
_ARCH=`getarch 2>/dev/null`
if [ "$_ARCH" = "`getarch -p 2>/dev/null`" ] ; then
echo -e "\nWelcome to the Haiku shell.\n"
PS1="\w"
else
echo -e "\nSwitching to architecture `getarch`\n"
PS1="[$_ARCH] \w"
fi
unset _ARCH
export PS1="\["'`if [ $? = 0 ]; then echo "\e[32m";
else echo "\e[31m"; fi`'"\]$PS1\[\e[0m\]> "
export USER=`id -un`
export GROUP=`id -gn`
if [ -z $BE_HOST_CPU ]; then
. /boot/system/boot/SetupEnvironment
fi
export HISTFILESIZE=500
export HISTCONTROL=ignoredups
alias ls="ls --color=auto"
alias ll="ls -lA"
alias la="ls -A"
alias m="more"
test -n "$BASH_VERSION" && shopt -s checkwinsize
if test -n "$KSH_VERSION"; then
ps1_pwd() {
local e=$? d=${PWD:-?}/ p=~
[[ $p = ?(*/) ]] || d=${d/#$p\//\~/}
print -nr -- "${d%/}"
return $e
}
PS1=${PS1/'\w'/'$(ps1_pwd)'}
else
test -n "$BASH_VERSION" || PS1=$(printf '%s' "$PS1" | \
sed 's/\\w/$PWD/')
fi
function dir {
ls -lF "$@";
}
for dir in `findpaths -Re B_FIND_PATH_DATA_DIRECTORY profile.d 2> /dev/null`; do
for i in $dir/*.sh; do
if [ -r $i ]; then
. $i
fi
done
unset i
done
unset dir
if [ -d /etc/profile.d ]; then
for i in /etc/profile.d/*.sh; do
if [ -r $i ]; then
. $i
fi
done
unset i
fi