Fredrik Fornwall
8 years ago
2 changed files with 20 additions and 11 deletions
@ -1,15 +1,18 @@ |
|||||
# Source etc/bash.bashrc also for interactive bash login shells: |
|
||||
if [ "$BASH" ]; then |
|
||||
if [[ "$-" == *"i"* ]]; then |
|
||||
if [ -r @TERMUX_PREFIX@/etc/bash.bashrc ]; then |
|
||||
. @TERMUX_PREFIX@/etc/bash.bashrc |
|
||||
fi |
|
||||
fi |
|
||||
fi |
|
||||
|
|
||||
for i in @TERMUX_PREFIX@/etc/profile.d/*.sh; do |
for i in @TERMUX_PREFIX@/etc/profile.d/*.sh; do |
||||
if [ -r $i ]; then |
if [ -r $i ]; then |
||||
. $i |
. $i |
||||
fi |
fi |
||||
done |
done |
||||
unset i |
unset i |
||||
|
|
||||
|
# Source etc/bash.bashrc and ~/.bashrc also for interactive bash login shells: |
||||
|
if [ "$BASH" ]; then |
||||
|
if [[ "$-" == *"i"* ]]; then |
||||
|
if [ -r /data/data/com.termux/files/usr/etc/bash.bashrc ]; then |
||||
|
. /data/data/com.termux/files/usr/etc/bash.bashrc |
||||
|
fi |
||||
|
if [ -r /data/data/com.termux/files/home/.bashrc ]; then |
||||
|
. /data/data/com.termux/files/home/.bashrc |
||||
|
fi |
||||
|
fi |
||||
|
fi |
||||
|
Loading…
Reference in new issue