blob: 136cdfb07268737134196a3ca8d205b98f7704d4 [file] [log] [blame]
cvpcs36c12722010-06-03 14:18:57 -05001# /etc/bash/bashrc
2#
3# This file is sourced by all *interactive* bash shells on startup,
4# including some apparently interactive shells such as scp and rcp
5# that can't tolerate any output. So make sure this doesn't display
6# anything or bad things will happen !
7
8
9# Test for an interactive shell. There is no need to set anything
10# past this point for scp and rcp, and it's important to refrain from
11# outputting anything in those cases.
12if [[ $- != *i* ]] ; then
13 # Shell is non-interactive. Be done now!
14 return
15fi
16
17# Bash won't get SIGWINCH if another process is in the foreground.
18# Enable checkwinsize so that bash will check the terminal size when
19# it regains control. #65623
20# http://cnswww.cns.cwru.edu/~chet/bash/FAQ (E11)
21shopt -s checkwinsize
22
23# Enable history appending instead of overwriting. #139609
24shopt -s histappend
25
cvpcsd1586452010-06-06 18:06:59 -050026use_color=false
27
28# set some environment variables
Dan Pasanend877b772014-10-06 12:39:24 -050029export HOME=/sdcard
30export TERM=xterm
cvpcsd1586452010-06-06 18:06:59 -050031
32# enable colorful terminal
33if [[ ${EUID} == 0 ]] ; then
34 PS1='\[\033[01;31m\]\h\[\033[01;34m\] \W \$\[\033[00m\] '
35else
36 PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] '
37fi
cvpcs36c12722010-06-03 14:18:57 -050038
39# Set up a ton of aliases to cover toolbox with the nice busybox
40# equivalents of its commands
Scott Anderson43548862011-02-09 10:58:16 -050041for i in cat chmod chown df insmod ln lsmod mkdir mount mv rm rmdir rmmod umount; do
42 eval alias ${i}=\"busybox ${i}\"
43done
44unset i
Firerat5e48b322011-08-08 23:00:00 +010045alias ls='busybox ls --color=auto'
Scott Andersone5730092011-02-09 11:06:30 -050046alias sysro='mount -o remount,ro /system'
47alias sysrw='mount -o remount,rw /system'
cvpcs36c12722010-06-03 14:18:57 -050048
cvpcs36c12722010-06-03 14:18:57 -050049# Try to keep environment pollution down, EPA loves us.
50unset use_color safe_term match_lhs
cvpcsd1586452010-06-06 18:06:59 -050051
Tanguy Pruvot61d7e022014-10-06 12:41:47 -050052resize