gegl: Update from 0.3.30 to 0.3.32
[termux-packages] / packages / bash / etc-profile
CommitLineData
b428c1fc
FF
1for i in @TERMUX_PREFIX@/etc/profile.d/*.sh; do
2 if [ -r $i ]; then
3 . $i
4 fi
5done
6unset i
f4eefdf9
FF
7
8# Source etc/bash.bashrc and ~/.bashrc also for interactive bash login shells:
9if [ "$BASH" ]; then
10 if [[ "$-" == *"i"* ]]; then
11 if [ -r /data/data/com.termux/files/usr/etc/bash.bashrc ]; then
12 . /data/data/com.termux/files/usr/etc/bash.bashrc
13 fi
14 if [ -r /data/data/com.termux/files/home/.bashrc ]; then
15 . /data/data/com.termux/files/home/.bashrc
16 fi
17 fi
18fi