You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

405 lines
10 KiB

  1. #!/bin/bash
  2. ##########################
  3. # system type
  4. alias ismsys=false
  5. alias iscygwin=false
  6. alias isdarwin=false
  7. alias iswindows="iscygwin || ismsys"
  8. alias islinux="! iswindows && ! isdarwin" # i havent used unix yet
  9. case `uname` in
  10. (MINGW32*) alias ismsys=true ;;
  11. (CYGWIN*) alias iscygwin=true ;;
  12. (Darwin*) alias isdarwin=true ;;
  13. esac
  14. ##########################################
  15. null(){
  16. "$@" >/dev/null 2>&1
  17. }
  18. __try_exec(){
  19. type $1 >/dev/null 2>&1 && "$@"
  20. }
  21. export PS1="\$(__my_prompt_function)\$ "
  22. # PROMPT_COMMAND=prompt_function
  23. if false # iswindows
  24. then
  25. export PAGER='tr -d \\r | less'
  26. else
  27. export PAGER="less"
  28. fi
  29. if null type vim
  30. then
  31. export EDITOR=vim
  32. else
  33. export EDITOR=vi
  34. fi
  35. export VISUAL="$EDITOR"
  36. export LESS="-iRMX"
  37. export LC_MESSAGES=C
  38. export CDPATH=".:~"
  39. export GIT_PAGER="$PAGER"
  40. export GIT_EDITOR="$EDITOR"
  41. null type stty && {
  42. stty stop undef # unbind C-s to stop displaying output
  43. stty erase '^h'
  44. }
  45. if iswindows; then
  46. # export TMP=/tmp
  47. # export TEMP=/tmp
  48. # export PS1=" \[\e[32m\]\u@\H \[\e[33m\]\w\[\e[0m\] \d \t\n\s \# \j \$ "
  49. # export PS1=" [\[\e[33m\]\w\[\e[0m\]]\n\[\e[32m\]\u@\H\[\e[0m\] \d \t \s.\v\nhist:\# jobs:\j \$ "
  50. export USER=$USERNAME
  51. fi
  52. #######################
  53. uname -a
  54. if [ "${EMACS}" = "t" ]; then # for emacs shell
  55. true export PS1="\u@\H \d \t \w\nemacs shell\$ "
  56. elif echo "$EMACS" | grep term >/dev/null 2>&1; then # for emacs term
  57. echo "Emacs Term"
  58. fi
  59. if test -f /etc/issue
  60. then
  61. cat /etc/issue
  62. fi
  63. ###################################
  64. # some aliases and functions
  65. alias ls="ls -hCFG $(test "$TERM" == dumb || echo --color=auto\ )--time-style=long-iso"
  66. # alias ll="ls -l"
  67. # alias la="ls -A"
  68. # alias lla="ls -Al"
  69. # alias less=""
  70. alias vl=/usr/share/vim/vimcurrent/macros/less.sh
  71. alias em="emacs -nw"
  72. # alias apt-get="sudo apt-get"
  73. alias ut="ssh 6365454829@un001.ecc.u-tokyo.ac.jp"
  74. alias rand="echo \$RANDOM"
  75. alias xunp="file-roller -h"
  76. alias pacome="sudo \paco -D"
  77. alias psall="ps auxww"
  78. alias q=exit
  79. alias p="$PAGER"
  80. alias c=cat
  81. alias pcalc="python -i -c 'from math import *' "
  82. alias py3=python3
  83. alias _reloadrc="test -f ~/.bashrc && source ~/.bashrc"
  84. alias sudo="sudo " # use aliases through sudo
  85. alias e3=e3em
  86. alias mytime="date +%Y%m%d-%H%M%S"
  87. alias sh="ENV=$HOME/.shrc PS1=\$\ sh"
  88. alias halt="sudo halt"
  89. alias reboot="sudo reboot"
  90. # type trash >/dev/null 2>&1 && alias rm=trash
  91. alias aptin="apt-get install"
  92. alias aptsearch="apt-cache search"
  93. alias aptshow="apt-cache show"
  94. alias yt=yaourt
  95. export PACMAN=pacman-color
  96. alias ubuntu-upgrade="sudo apt-get autoremove --yes && sudo apt-get update --yes && sudo apt-get upgrade --yes"
  97. alias arch-upgrade="yaourt -Syu"
  98. alias port-upgrade="port selfupdate && port sync && port upgrade installed"
  99. if iscygwin; then
  100. null type windate || alias windate="/c/Windows/System32/cmd.exe //c 'echo %DATE%-%TIME%'"
  101. alias cygsu="cygstart /cygwinsetup.exe"
  102. alias emacs="CYGWIN=tty emacs -nw"
  103. alias ls="ls -CFG $(test "$TERM" == dumb || echo --color=auto)"
  104. fi
  105. alias g=git
  106. if null type _git # enable programmable completion for g
  107. then
  108. complete -o bashdefault -o default -o nospace -F _git g 2>/dev/null \
  109. || complete -o default -o nospace -F _git g
  110. fi
  111. showinfo(){
  112. echo "Japanese letters are 表示可能"
  113. __try_exec diskinfo
  114. ! isdarwin && test -n "${DESKTOP_SESSION}" && type xrandr >/dev/null 2>&1 && {
  115. xrandr | grep --color=never ^Screen
  116. }
  117. iswindows || __try_exec finger $USER
  118. LANG=C __try_exec id
  119. }
  120. export __MYGITBAREREP="${HOME}/dbx/.git-bare"
  121. git-make-local-rep(){
  122. test $# -eq 0 && {
  123. echo "specify repository name." 1>&2
  124. return 1
  125. }
  126. dir="${__MYGITBAREREP}/$1.git"
  127. cdir=$PWD
  128. if test -d "$dir"
  129. then
  130. echo "dir $dir already exist!" 1>&2
  131. else
  132. mkdir -p "$dir" && {
  133. cd "$dir" &&
  134. git init --bare --shared=all
  135. }
  136. fi
  137. cd ${cdir}
  138. }
  139. bak(){
  140. for file in "$@"
  141. do
  142. mv -v ${file} ${file}.bak
  143. done
  144. }
  145. di(){
  146. if null type colordiff && test $TERM != dumb
  147. then
  148. local diffcmd=colordiff
  149. else
  150. local diffcmd=diff
  151. fi
  152. ${diffcmd} -u "$@" | ${PAGER}
  153. }
  154. throw-away(){
  155. mkdir -p ~/.backup/tb
  156. for file in "$@"
  157. do
  158. mv $file ~/.backup/tb
  159. done
  160. }
  161. mkcd(){
  162. mkdir -p $1
  163. cd $1
  164. }
  165. catclip(){
  166. if iswindows
  167. then
  168. cat /dev/clipboard | tr -d \\r
  169. else
  170. xclip -o -selection "clipboard"
  171. fi
  172. }
  173. setclip(){
  174. if iswindows
  175. then
  176. if test $# -eq 0
  177. then
  178. sed -e 's/$/\r/' | tee /dev/clipboard
  179. else
  180. cat "$@" | sed -e 's/$/\r/' | tee /dev/clipboard
  181. fi
  182. else
  183. if test $# -eq 0
  184. then
  185. xclip -i -f -selection "primary" | xclip -i -f -selection "clipboard"
  186. else
  187. cat "$@" | xclip -i -f -selection "primary" | xclip -i -f -selection "clipboard"
  188. fi
  189. fi
  190. }
  191. o(){
  192. if [ $# -eq 0 ]
  193. then
  194. local f=.
  195. else
  196. local f="$1"
  197. fi
  198. if iswindows
  199. then
  200. cmd.exe //c start "" "$f"
  201. elif isdarwin
  202. then
  203. open "$f"
  204. else
  205. xdg-open "$f"
  206. fi
  207. }
  208. convmv-sjis2utf8-test(){
  209. convmv -r -f sjis -t utf8 *
  210. }
  211. convmv-sjis2utf8-notest(){
  212. convmv -r -f sjis -t utf8 * --notest
  213. }
  214. _mygitconfig(){
  215. git config --global user.name '10sr'
  216. git config --global user.email '8slashes+git@gmail.com'
  217. git config --global core.autocrlf false
  218. git config --global color.ui auto
  219. git config --global status.relativePaths false
  220. git config --global status.showUntrackedFiles normal
  221. git config --global alias.graph "log --graph --date-order -C -M --pretty=format:\"<%h> %ad [%an] %Cgreen%d%Creset %s\" --all --date=short"
  222. git config --global alias.st "status -s"
  223. git config --global alias.b "branch"
  224. git config --global alias.ci "commit --verbose"
  225. git config --global alias.co "checkout"
  226. git config --global alias.cim "commit --verbose -m"
  227. git config --global alias.di "diff --color"
  228. git config --global alias.me "merge --no-ff --stat -v"
  229. git config --global alias.ls "ls-files -v --full-name"
  230. git config --global alias.sl "!sl"
  231. # git config --global alias.my-ls "ls-files | xargs ls"
  232. # git config --global alias.ll "!git ls-files | xargs ls -l -CFG --color=auto --time-style=long-iso"
  233. git config --global alias.addi "add -i"
  234. if iswindows; then
  235. git config --global core.fileMode false
  236. fi
  237. }
  238. __my_parse_svn_branch() {
  239. local LANG=C
  240. local svn_url=$(svn info 2>/dev/null | sed -ne 's#^URL: ##p')
  241. local svn_repository_root=$(svn info 2>/dev/null | sed -ne 's#^Repository Root: ##p')
  242. echo ${svn_url} | sed -e 's#^'"${svn_repository_root}"'##g' | awk '{print $1}'
  243. }
  244. __my_svn_ps1(){
  245. local svn_branch=$(__my_parse_svn_branch)
  246. test -n "${svn_branch}" && printf "$1" "{$svn_branch}"
  247. }
  248. __my_prompt_function(){ # used by PS1
  249. local lastreturn=$?
  250. if test "${TERM}" == dumb
  251. then
  252. local c1=
  253. local c2=
  254. local c3=
  255. local cdef=
  256. else
  257. local c1="\e[33m"
  258. local c2="\e[36m"
  259. local c3="\e[37m"
  260. local cdef="\e[0m"
  261. fi
  262. if iswindows
  263. then
  264. local pwd=$PWD
  265. local oldpwd=$OLDPWD
  266. local jobnum=
  267. if git branch >/dev/null 2>&1
  268. then
  269. local git="[GIT]"
  270. else
  271. local git=
  272. fi
  273. local date=$(/c/Windows/System32/cmd.exe //c 'echo %DATE%-%TIME%')
  274. else
  275. local pwd=$(echo "${PWD}/" | sed -e "s#${HOME}#~#")
  276. local oldpwd=$(echo "${OLDPWD}/" | sed -e "s#${HOME}#~#")
  277. local jobnum=$(jobs | wc -l)
  278. local git=$(__try_exec __git_ps1 [GIT:%s])
  279. local date=$(LANG=C __try_exec date +"%a, %d %b %Y %T %z")
  280. fi
  281. local svn=$(type svn >/dev/null 2>&1 && __try_exec __my_svn_ps1 [SVN:%s])
  282. test -f ~/.batterystatus && local battery="[Battery:$(cat ~/.batterystatus | sed -e 's`%`%%`g')]"
  283. local ip=$(ip-address [Addr:%s])
  284. # local battery=$(battery-state [%s] | sed -e 's`%`%%`g') # very slow
  285. printf " [${c1}${pwd}${cdef}<${c3}${oldpwd}${cdef}]${git}${svn}${battery}${ip}\n"
  286. printf "${c2}${USER}@${HOSTNAME}${cdef} ${date} ${BASH} ${BASH_VERSION}\n"
  287. printf "shlv:${SHLVL} jobs:${jobnum} last:${lastreturn} "
  288. }
  289. #Change ANSI Colors
  290. _chengecolors(){
  291. echo -e \
  292. "\e]P0000000" \
  293. "\e]P1cd0000" \
  294. "\e]P200cd00" \
  295. "\e]P3cdcd00" \
  296. "\e]P41e90ff" \
  297. "\e]P5cd00cd" \
  298. "\e]P600cdcd" \
  299. "\e]P7353535" \
  300. "\e]P8666666" \
  301. "\e]P9ff9999" \
  302. "\e]Pa99ff99" \
  303. "\e]Pbffff99" \
  304. "\e]Pc9999ff" \
  305. "\e]Pdff99ff" \
  306. "\e]Pe99ffff" \
  307. "\e]Pfffffff"
  308. }
  309. # printf "\e]P7353535" \
  310. _echocolors(){
  311. echo -e \
  312. "\e[30mBlack\n" \
  313. "\e[31mRed\n" \
  314. "\e[32mGreen\n" \
  315. "\e[33mYellow\n" \
  316. "\e[34mBlue\n" \
  317. "\e[35mMagenta\n" \
  318. "\e[36mCyan\n" \
  319. "\e[37mWhite\n" \
  320. "\e[30;1mBright Black\n" \
  321. "\e[31;1mBright Red\n" \
  322. "\e[32;1mBright Green\n" \
  323. "\e[33;1mBright Yellow\n" \
  324. "\e[34;1mBright Blue\n" \
  325. "\e[35;1mBright Magenta\n" \
  326. "\e[36;1mBright Cyan\n" \
  327. "\e[37;1mBright White\n" \
  328. "\e[0m"
  329. }
  330. # http://myminios.googlecode.com/svn-history/r10/trunk/colortable16.sh
  331. winln(){
  332. # for windose make link (actually junction)
  333. if test $# -eq 0
  334. then
  335. {
  336. echo "usage: winln TARGET LINK_NAME"
  337. echo "Create a link to TARGET with the name LINK_NAME (that is, TARGET must already exist)."
  338. echo "About other features run 'junction'."
  339. } 1>&2
  340. return 1
  341. else
  342. junction "$2" "$1"
  343. fi
  344. }
  345. battery-status(){
  346. local dir=/sys/class/power_supply/BAT0
  347. if test -d $dir
  348. then
  349. local st=$(cat $dir/status)
  350. local full=$(cat $dir/charge_full)
  351. local now=$(cat $dir/charge_now)
  352. local rate=$(expr $now \* 100 / $full)
  353. printf $1 "${st}:${rate}%"
  354. fi
  355. }
  356. alias bat='battery-status %s\\n'
  357. battery-status2(){
  358. local dir=/sys/class/power_supply/BAT0
  359. . $dir/uevent
  360. local rate=$(expr $POWER_SUPPLY_CHARGE_NOW \* 100 / $POWER_SUPPLY_CHARGE_FULL)
  361. echo ${POWER_SUPPLY_STATUS}:${rate}%
  362. }
  363. ip-address(){
  364. local ip=$(LANG=C ifconfig | grep "inet " | grep -v "127.0.0.1" | awk '{print $2}')
  365. test -n $ip && printf $1 $ip
  366. }