termux-packages/packages/termux-tools/login

31 lines
707 B
Plaintext
Raw Normal View History

#!/bin/sh
2017-02-12 21:01:01 +01:00
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
2017-02-12 21:01:01 +01:00
fi
if [ -G ~/.termux/shell ]; then
export SHELL="`realpath ~/.termux/shell`"
2017-02-12 21:01:01 +01:00
else
for file in @TERMUX_PREFIX@/bin/bash @TERMUX_PREFIX@/bin/sh /system/bin/sh; do
2017-02-12 21:01:01 +01:00
if [ -x $file ]; then
export SHELL=$file
2017-02-12 21:01:01 +01:00
break
fi
done
fi
if [ -f @TERMUX_PREFIX@/lib/libtermux-exec.so ]; then
export LD_PRELOAD=@TERMUX_PREFIX@/lib/libtermux-exec.so
$SHELL -c "busybox true" > /dev/null 2>&1 || unset LD_PRELOAD
2017-09-17 16:12:20 +02:00
fi
if [ -n "$TERM" ]; then
exec "$SHELL" -l "$@"
else
exec "$SHELL" "$@"
fi