Update shell.sh

This commit is contained in:
hyugogirubato 2024-04-14 19:11:26 +02:00
parent 9554598970
commit da3b1f95d9
1 changed files with 18 additions and 1 deletions

View File

@ -1,19 +1,36 @@
# Env
export PATH='/sbin:/system/sbin:/product/bin:/apex/com.android.runtime/bin:/system/bin:/system/xbin:/odm/bin:/vendor/bin:/vendor/xbin'
# Path
export TMP='/data/local/tmp/'
export APP='/data/data'
export LOCAL='/storage/emulated/0'
export WIFI='/data/misc/wifi'
# Color
alias ls='ls --color=auto' alias ls='ls --color=auto'
alias grep='grep --color=auto' alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto' alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto' alias egrep='egrep --color=auto'
alias logcat='logcat -v color' alias logcat='logcat -v color'
alias ip='ip -c'
# Custom
alias ll='ls -alF' alias ll='ls -alF'
alias la='ls -A' alias la='ls -A'
alias l='ls -CF' alias l='ls -CF'
alias ipa='ip -c a' alias ipa='ip a'
alias rm='rm -rf' alias rm='rm -rf'
# Extra
tree() { tree() {
path=${1:-.} path=${1:-.}
find ${path} -print | sort | sed 's;[^/]*/;|---;g;s;---|; |;g' find ${path} -print | sort | sed 's;[^/]*/;|---;g;s;---|; |;g'
} }
man() {
${1} --help
}
clear clear