version 1042
[uweb.git] / termux / bashrc
blob8c29fc26a4b8838491037589c3a8b347b0bfd68f
1 unset HISTFILE
2 if [[ $EUID -ne 0 ]]; then
3     history -r ~/.bash_history
4   else
5       history -r ~/.bash_history.root
6 fi
7 export HISTCONTROL=ignoreboth:erasedups
8 #shopt -s histappend
10 shopt -s globstar
12 export _Z_CMD=j
13 . z.sh
14 . commacd.sh
16 alias j="_z"
17 v(){
18   file=
19   if [ $1 ]; then
20     file=${1}
21     shift
22   fi
23   url="file://${PWD}/${file}"
24   am start -a android.intent.action.VIEW -d "$url" $@
27 d(){
28   word=$1
29   dict=${2:-ahd}
30   tdict ~/share/dict/$dict $1
33 z(){
34 #usage: z word dictname percent
35   word=$1
36   dict=~/share/dict/$2.xz
37   percent=''
38   if [ "$3" ]; then
39     percent=${3}p
40   fi
41   xz -cdf -- "$dict" | less -n +"${percent}/####$word"
44 zb(){
45   word=$1
46   dict=~/share/xz/$2.xz
47   xz -cdf -- "$dict" | less -n +"/$word"
50 export LESS=-inR