40 lines
1.2 KiB
Bash
Executable File
40 lines
1.2 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $# = 0 ] && [ -f @TERMUX_PREFIX@/etc/motd ] && [ ! -f ~/.hushlogin ] && [ -z "$TERMUX_HUSHLOGIN" ]; then
|
|
cat @TERMUX_PREFIX@/etc/motd
|
|
else
|
|
# This variable shouldn't be kept set.
|
|
unset TERMUX_HUSHLOGIN
|
|
fi
|
|
|
|
# TERMUX_VERSION env variable has been exported since v0.107 and PATH was being set to following value in <0.104. Last playstore version was v0.101.
|
|
if [ $# = 0 ] && [ -f @TERMUX_PREFIX@/etc/motd-playstore ] && [ -z "$TERMUX_VERSION" ] && [ "$PATH" = "@TERMUX_PREFIX@/bin:@TERMUX_PREFIX@/bin/applets" ]; then
|
|
printf '\033[0;31m'; cat @TERMUX_PREFIX@/etc/motd-playstore; printf '\033[0m'
|
|
fi
|
|
|
|
if [ -G ~/.termux/shell ]; then
|
|
export SHELL="`realpath ~/.termux/shell`"
|
|
else
|
|
for file in @TERMUX_PREFIX@/bin/bash @TERMUX_PREFIX@/bin/sh /system/bin/sh; do
|
|
if [ -x $file ]; then
|
|
export SHELL=$file
|
|
break
|
|
fi
|
|
done
|
|
fi
|
|
|
|
if [ -f @TERMUX_PREFIX@/lib/libtermux-exec.so ]; then
|
|
export LD_PRELOAD=@TERMUX_PREFIX@/lib/libtermux-exec.so
|
|
$SHELL -c "coreutils --coreutils-prog=true" > /dev/null 2>&1 || unset LD_PRELOAD
|
|
fi
|
|
|
|
if [ -f @TERMUX_PREFIX@/etc/termux-login.sh ]; then
|
|
. @TERMUX_PREFIX@/etc/termux-login.sh
|
|
fi
|
|
|
|
if [ -n "$TERM" ]; then
|
|
exec "$SHELL" -l "$@"
|
|
else
|
|
exec "$SHELL" "$@"
|
|
fi
|