Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- for i in /data/data/com.termux/files/usr/etc/profile.d/*.sh; do
- if [ -r $i ]; then
- . $i
- fi
- done
- 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
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement