mirror of
https://github.com/hyugogirubato/KeyDive.git
synced 2025-04-30 00:24:25 +02:00

- Fix version number - Fix import functions text - Remove auto-select for imported functions (already done with python) - Add extracted functions for 15.0.0 arm64 - Show script version - Add clear command
19 lines
346 B
Bash
19 lines
346 B
Bash
|
|
alias ls='ls --color=auto'
|
|
alias grep='grep --color=auto'
|
|
alias fgrep='fgrep --color=auto'
|
|
alias egrep='egrep --color=auto'
|
|
alias logcat='logcat -v color'
|
|
|
|
alias ll='ls -alF'
|
|
alias la='ls -A'
|
|
alias l='ls -CF'
|
|
alias ipa='ip -c a'
|
|
alias rm='rm -rf'
|
|
|
|
tree() {
|
|
path=${1:-.}
|
|
find ${path} -print | sort | sed 's;[^/]*/;|---;g;s;---|; |;g'
|
|
}
|
|
|
|
clear |