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.
 
 
 
 
 
 

686 lines
17 KiB

  1. #!/bin/bash
  2. # If not running interactively, don't do anything
  3. [[ $- != *i* ]] && return
  4. ##########################################
  5. null(){
  6. "$@" >/dev/null 2>&1
  7. }
  8. __try_exec(){
  9. type $1 >/dev/null 2>&1 && "$@"
  10. }
  11. ##########################
  12. # system type
  13. alias ismsys=false
  14. alias iscygwin=false
  15. alias iswindows=false
  16. alias isdarwin=false
  17. alias islinux=false
  18. alias with_coreutils=false # for mac
  19. case `uname` in
  20. (MINGW*) alias ismsys=true ;;
  21. (CYGWIN*) alias iscygwin=true ;;
  22. (Darwin*) alias isdarwin=true ;;
  23. (Linux*) alias islinux=true ;;
  24. esac
  25. null ls --version && alias with_coreutils=true
  26. ( ismsys || iscygwin ) && alias iswindows=true
  27. #################################
  28. if false iswindows
  29. then
  30. export PAGER='tr -d \\r | less'
  31. else
  32. export PAGER="less"
  33. fi
  34. export LESS="-iRMXF"
  35. if null type vim
  36. then
  37. export EDITOR=vim
  38. else
  39. export EDITOR=vi
  40. fi
  41. export LANG=ja_JP.UTF-8
  42. export LC_MESSAGES=C
  43. # export CDPATH=".:~"
  44. export VISUAL="$EDITOR"
  45. export GIT_PAGER="$PAGER"
  46. export GIT_EDITOR="$EDITOR"
  47. echo "$TERM" | grep '^screen' >/dev/null 2>&1 || export TERM_ORIG=$TERM
  48. test "$TERM" = screen && test "$TERM_ORIG" = xterm-256color && TERM=screen-256color
  49. test -z "$TMP" && export TMP=/tmp/${USER}-tmp
  50. mkdir -p "$TMP"
  51. ! iswindows && null type stty && {
  52. stty stop undef # unbind C-s to stop displaying output
  53. # stty erase '^h'
  54. }
  55. if iswindows; then
  56. # export PS1=" \[\e[32m\]\u@\H \[\e[33m\]\w\[\e[0m\] \d \t\n\s \# \j \$ "
  57. # export PS1=" [\[\e[33m\]\w\[\e[0m\]]\n\[\e[32m\]\u@\H\[\e[0m\] \d \t \s.\v\nhist:\# jobs:\j \$ "
  58. export USER=$USERNAME
  59. fi
  60. _tmux_prefs(){
  61. null type tmux || return 1
  62. tmux set -g mode-keys vi
  63. }
  64. #######################
  65. iswindows && alias tty="echo cmd.exe"
  66. type fortune >/dev/null 2>&1 && {
  67. echo
  68. fortune
  69. echo
  70. fortune -o
  71. echo
  72. }
  73. uname -a
  74. echo TERM $TERM $(tput colors) colors connected to $(tty), running $BASH $BASH_VERSION
  75. echo
  76. ###################################
  77. # some aliases and functions
  78. ( ! with_coreutils && isdarwin ) || test "$TERM" == dumb || _coloroption=" --color=auto"
  79. ( ! with_coreutils && isdarwin ) || iswindows || _timeoption=" --time-style=long-iso"
  80. ( ! with_coreutils && isdarwin ) || _hideoption=" --hide=[A-Z]*" # do not use
  81. _timeformat_iso="%Y-%m-%dT%H:%M:%S%z"
  82. _timeformat_rfc2822="%a, %d %b %Y %T %z"
  83. alias ls="ls -hCF${_coloroption}${_timeoption}"
  84. # export GREP_OPTIONS=""
  85. alias gr="grep -n${_coloroption}"
  86. iswindows && alias grep="grep -n"
  87. # alias ll="ls -l"
  88. # alias la="ls -A"
  89. # alias lla="ls -Al"
  90. # alias less=""
  91. alias em="emacs -nw"
  92. null type vim && alias vi=vim
  93. alias pstree="LANG=C pstree"
  94. alias cp="cp -v"
  95. alias mv="mv -v"
  96. alias psaux="ps auxww"
  97. alias q=exit
  98. alias e3=e3em
  99. #alias dirs="dirs -v -l | \grep -v \$(printf '%s$' \$PWD)"
  100. alias po=popd
  101. alias pu=pushd
  102. alias sudo="sudo " # use aliases through sudo
  103. alias halt="sudo halt"
  104. alias reboot="sudo reboot"
  105. alias suspend="dbus-send --system --print-reply --dest=org.freedesktop.UPower \
  106. /org/freedesktop/UPower org.freedesktop.UPower.Suspend"
  107. alias hibernate="dbus-send --system --print-reply --dest=org.freedesktop.UPower \
  108. /org/freedesktop/UPower org.freedesktop.UPower.Hibernate"
  109. alias rand="echo \$RANDOM"
  110. alias xunp="file-roller -h"
  111. alias pc="sudo \paco -D"
  112. alias pycalc="python -i -c 'from math import *' "
  113. alias py3=python3
  114. alias py2=python2
  115. alias _reloadrc="test -f ~/.bashrc && source ~/.bashrc"
  116. # alias mytime="date +%Y%m%d-%H%M%S"
  117. alias sh="ENV=$HOME/.shrc PS1=\$\ PROMPT_COMMAND="" sh"
  118. # type trash >/dev/null 2>&1 && alias rm=trash
  119. alias mpg123="mpg123 -C -v --title"
  120. export PLAYER="mpg123 -C -v --title"
  121. null type screen && alias screen="screen -e^z^z"
  122. alias zcd="cd \`zenity --file-selection --directory\`"
  123. null type gtags && alias gtags="gtags --verbose"
  124. null type htags && alias htags="htags --xhtml --symbol --line-number \
  125. --frame --alphabet --verbose"
  126. alias pad=notepad
  127. null type gedit && alias pad=gedit
  128. null type leafpad && alias pad=leafpad
  129. isdarwin && alias pad="open -e"
  130. alias wic=wicd-curses
  131. alias wil="wicd-cli -y -l | head"
  132. #alias wicn="wicd-cli -y -c -n"
  133. wicn(){
  134. if test $# -eq 0
  135. then
  136. local num
  137. wicd-cli -y -l | head
  138. echo -n "input num: "
  139. read num
  140. test -n "$num" && wicd-cli -y -c -n $num
  141. else
  142. wicd-cli -y -c -n $1
  143. fi
  144. }
  145. alias aptin="apt-get install"
  146. alias aptsearch="apt-cache search"
  147. alias aptshow="apt-cache show"
  148. for f in /usr/share/vim/vimcurrent/macros/less.sh \
  149. /usr/share/vim/vim73/macros/less.sh \
  150. /usr/share/vim/vim72/macros/less.sh
  151. do
  152. test -f $f && alias vl=$f && break
  153. done
  154. alias yt=yaourt
  155. null type pacman-color && {
  156. alias pacman=pacman-color
  157. export pacman_program=pacman-color # used by pacmatic
  158. export PACMAN=pacman-color # used by yaourt
  159. }
  160. null type pacmatic && {
  161. alias pacman="pacmatic"
  162. export PACMAN="pacmatic"
  163. }
  164. null type apt-get && \
  165. alias aupgrade="sudo apt-get autoremove --yes && sudo apt-get update --yes && sudo apt-get upgrade --yes"
  166. null type port && \
  167. alias port="port -v"
  168. alias pupgrade="sudo port -v selfupdate && { sudo port -v upgrade outdated; sudo port -v uninstall leaves; }"
  169. if iscygwin; then
  170. null type windate || alias windate="/c/Windows/System32/cmd.exe //c 'echo %DATE%-%TIME%'"
  171. alias cygsu="cygstart /cygwinsetup.exe"
  172. alias emacs="CYGWIN=tty emacs -nw"
  173. alias ls="ls -CFG $(iswindows || test "$TERM" == dumb || echo --color=auto)"
  174. fi
  175. alias g=git
  176. if null type _git # enable programmable completion for g
  177. then
  178. complete -o bashdefault -o default -o nospace -F _git g 2>/dev/null \
  179. || complete -o default -o nospace -F _git g
  180. fi
  181. alias setup.py="sudo python3 setup.py install --record files.txt"
  182. scr(){
  183. _time="%Y-%m-%dT%H:%M:%S%z"
  184. script `date +${_time}`.script "$@"
  185. }
  186. netwait(){
  187. while ! ping -c 1 -t 1 example.com
  188. do
  189. true
  190. done
  191. echo network works.
  192. }
  193. cd(){
  194. if test $# -eq 0
  195. then
  196. pushd ~/ >/dev/null
  197. elif test $1 = -
  198. then
  199. local pwd="$PWD"
  200. command cd $OLDPWD
  201. pushd -n "$pwd" >/dev/null # stack last dir
  202. elif ! test -d "$1"
  203. then
  204. echo `basename ${SHELL}`: cd: "$1": No such file or directory 1>&2
  205. return 1
  206. else
  207. pushd "$1" >/dev/null
  208. fi
  209. __dirs_rm_dup "$PWD"
  210. echo "$PWD"
  211. }
  212. __dirs_rm_dup(){
  213. for d in "$@"
  214. do
  215. local next="$(__realpath --strip "$d")"
  216. for l in $(\dirs -v -l | cut -d "
  217. " -f 2- | \grep -x " *[0-9]\+ \+${next}" | \grep -o "^ *[0-9]\+ " | tac)
  218. do
  219. popd +$l -n >/dev/null
  220. done
  221. done
  222. }
  223. __realpath(){
  224. if type realpath >/dev/null 2>&1
  225. then
  226. command realpath "$@"
  227. else
  228. while ! test -d $1
  229. do
  230. shift
  231. done
  232. local d="$OLDPWD"
  233. command cd "$1"
  234. echo "$PWD"
  235. command cd "$d"
  236. fi
  237. }
  238. dh(){
  239. if test $# -eq 0
  240. then
  241. dirs -v -l
  242. else
  243. local dir="$(dirs -v -l | \grep "^ *$1 \+" | sed "s/^ *[0-9]* *//g")"
  244. cd "$dir"
  245. fi
  246. }
  247. input(){
  248. local foo
  249. stty -echo
  250. read foo
  251. stty echo
  252. echo $foo
  253. }
  254. tmux(){
  255. if test $# -eq 0
  256. then
  257. if command tmux has -t main
  258. then
  259. command tmux attach -t main
  260. else
  261. command tmux new -s main
  262. fi
  263. else
  264. command tmux "$@"
  265. fi
  266. }
  267. mcrypt-stream(){
  268. test $# -eq 2 || return 1
  269. case $1 in
  270. en)
  271. mcrypt --key $2 | base64 ;;
  272. de)
  273. base64 -d | mcrypt -d --key $2 ;;
  274. esac
  275. }
  276. gpg-stream(){
  277. test $# -eq 2 || return 1
  278. case $1 in
  279. en)
  280. gpg --passphrase $2 -c --batch |base64 ;;
  281. de)
  282. base64 -d|gpg --passphrase $2 -d --batch ;;
  283. esac
  284. }
  285. alias enst="gpg-stream en"
  286. alias dest="gpg-stream de"
  287. showinfo(){
  288. echo "Japanese letters are 表示可能"
  289. __try_exec diskinfo
  290. ! isdarwin && test -n "${DISPLAY}" && {
  291. __try_exec xrandr | \grep --color=never ^Screen
  292. }
  293. iswindows || __try_exec finger $USER
  294. LANG=C __try_exec id
  295. __try_exec xset q
  296. }
  297. x(){
  298. if [[ -z $DISPLAY ]] && ! [[ -e /tmp/.X11-unix/X0 ]] && (( EUID )); then
  299. #mkdir -p ~/.my/log
  300. # nohup startx >~/.my/log/xorg.log 2>&1 &
  301. # exit
  302. exec startx
  303. else
  304. echo "X cant be started! Maybe another X is already running or something." 1>&2
  305. fi
  306. }
  307. bak(){
  308. for file in "$@"
  309. do
  310. cp -v ${file} ${file}.bak
  311. done
  312. }
  313. di(){
  314. if type colordiff >/dev/null 2>&1 && test $TERM != dumb
  315. then
  316. local diffcmd=colordiff
  317. else
  318. local diffcmd=diff
  319. fi
  320. ${diffcmd} -u "$@" | ${PAGER}
  321. }
  322. tb(){
  323. local tb="$HOME/.my/tb"
  324. mkdir -p "$tb"
  325. for file in "$@"
  326. do
  327. mv -t "$tb" "$file"
  328. done
  329. }
  330. mkcd(){
  331. mkdir -p $1
  332. cd $1
  333. }
  334. catclip(){
  335. if iswindows
  336. then
  337. cat /dev/clipboard | tr -d \\r
  338. elif isdarwin
  339. then
  340. pbpaste
  341. else
  342. xclip -o -selection "clipboard"
  343. fi
  344. }
  345. setclip(){
  346. if iswindows
  347. then
  348. if test $# -eq 0
  349. then
  350. sed -e 's/$/\r/' | tee /dev/clipboard
  351. else
  352. cat "$@" | sed -e 's/$/\r/' | tee /dev/clipboard
  353. fi
  354. elif isdarwin
  355. then
  356. if test $# -eq 0
  357. then
  358. pbcopy
  359. else
  360. cat "$@" | pbcopy
  361. fi
  362. else
  363. if test $# -eq 0
  364. then
  365. xclip -i -f -selection "primary" | xclip -i -f -selection "clipboard"
  366. else
  367. cat "$@" | xclip -i -f -selection "primary" | xclip -i -f -selection "clipboard"
  368. fi
  369. fi
  370. }
  371. open_file(){
  372. if iswindows
  373. then
  374. cmd.exe //c start "" "$@"
  375. elif isdarwin
  376. then
  377. touch "$@"
  378. open "$@"
  379. elif islinux
  380. then
  381. touch "$@"
  382. if null type pcmanfm; then
  383. LC_MESSAGES= pcmanfm "$@"
  384. else
  385. LC_MESSAGES= xdg-open "$@" &
  386. fi
  387. else
  388. cat "$@"
  389. fi
  390. }
  391. o(){
  392. if test $# -eq 0
  393. then
  394. open_file .
  395. else
  396. for f in "$@"
  397. do
  398. open_file "$(realpath "$f")"
  399. done
  400. fi
  401. }
  402. convmv-sjis2utf8-test(){
  403. convmv -r -f sjis -t utf8 *
  404. }
  405. convmv-sjis2utf8-notest(){
  406. convmv -r -f sjis -t utf8 * --notest
  407. }
  408. __my_moc_state(){
  409. type mocp >/dev/null 2>&1 || return
  410. test "`mocp -Q %state 2>/dev/null`" == PLAY || return
  411. printf "$1" "`mocp -Q %title 2>/dev/null`"
  412. }
  413. __my_parse_svn_branch() {
  414. local LANG=C
  415. local svn_url=$(svn info 2>/dev/null | sed -ne 's#^URL: ##p')
  416. local svn_repository_root=$(svn info 2>/dev/null | sed -ne 's#^Repository Root: ##p')
  417. echo ${svn_url} | sed -e 's#^'"${svn_repository_root}"'##g' | awk '{print $1}'
  418. }
  419. __my_svn_ps1(){
  420. if svn status >/dev/null 2>&1
  421. then
  422. local svn_branch=$(__my_parse_svn_branch)
  423. test -n "${svn_branch}" && printf "$1" "{$svn_branch}"
  424. fi
  425. }
  426. #Change ANSI Colors
  427. _chengecolors(){
  428. echo -e \
  429. "\e]P0000000" \
  430. "\e]P1cd0000" \
  431. "\e]P200cd00" \
  432. "\e]P3cdcd00" \
  433. "\e]P41e90ff" \
  434. "\e]P5cd00cd" \
  435. "\e]P600cdcd" \
  436. "\e]P7353535" \
  437. "\e]P8666666" \
  438. "\e]P9ff9999" \
  439. "\e]Pa99ff99" \
  440. "\e]Pbffff99" \
  441. "\e]Pc9999ff" \
  442. "\e]Pdff99ff" \
  443. "\e]Pe99ffff" \
  444. "\e]Pfffffff"
  445. }
  446. # printf "\e]P7353535" \
  447. _colors(){
  448. echo -e \
  449. "\e[30mBlack" \
  450. "\e[31mRed" \
  451. "\e[32mGreen" \
  452. "\e[33mYellow" \
  453. "\e[34mBlue" \
  454. "\e[35mMagenta" \
  455. "\e[36mCyan" \
  456. "\e[37mWhite"
  457. echo -e \
  458. "\e[30;1mBright Black" \
  459. "\e[31;1mBright Red" \
  460. "\e[32;1mBright Green" \
  461. "\e[33;1mBright Yellow" \
  462. "\e[34;1mBright Blue" \
  463. "\e[35;1mBright Magenta" \
  464. "\e[36;1mBright Cyan" \
  465. "\e[37;1mBright White\n" \
  466. "\e[0m"
  467. }
  468. winln(){
  469. # for windose make link (actually junction)
  470. if test $# -eq 0
  471. then
  472. {
  473. echo "usage: winln TARGET LINK_NAME"
  474. echo "Create a link to TARGET with the name LINK_NAME (that is, TARGET must already exist)."
  475. echo "About other features run 'junction'."
  476. } 1>&2
  477. return 1
  478. else
  479. junction "$2" "$1"
  480. fi
  481. }
  482. __my_battery_status(){
  483. local dir=/sys/class/power_supply/BAT0
  484. if test -d $dir && test -r $dir/status && test -r $dir/charge_full && test -r $dir/charge_now
  485. then
  486. local st=$(cat $dir/status)
  487. local full=$(cat $dir/charge_full)
  488. local now=$(cat $dir/charge_now)
  489. local rate=$(expr $now \* 100 / $full)
  490. printf "$1" "${st}:${rate}%"
  491. fi
  492. }
  493. alias bat='__my_battery_status %s\\n'
  494. ip-address(){
  495. type ip >/dev/null 2>&1 || return 1
  496. local ip=$(LANG=C ip addr show scope global | \grep --color=never --only-matching 'inet [^ ]*' | cut -d " " -f 2)
  497. test -n "$ip" && printf $1 $ip
  498. }
  499. __my_ps1_scale(){
  500. local last=$?
  501. echo "[LC:${LINES}x${COLUMNS}]"
  502. return $last
  503. }
  504. __my_ps1_tmux(){
  505. local last=$?
  506. null type tmux || return $last
  507. local tmuxc="$(tmux display -p '#S:#I:#W.#P' 2>/dev/null)"
  508. test -n "$TMUX" && echo "[TMUX:$tmuxc]"
  509. return $last
  510. }
  511. __my_ps1_moc(){
  512. local last=$?
  513. __my_moc_state "[MOC:%s]"
  514. return $last
  515. }
  516. for f in /usr/share/git/git-prompt.sh \
  517. /opt/local/share/doc/git-core/contrib/completion/git-prompt.sh
  518. do
  519. test -r $f && . $f && break
  520. done
  521. GIT_PS1_SHOWDIRTYSTATE=t
  522. GIT_PS1_SHOWUPSTREAM=t
  523. __my_ps1_git(){
  524. local last=$?
  525. null type __git_ps1 || return $last
  526. null __gitdir || return $last
  527. __git_ps1 "[GIT:$(__try_exec git config --get user.name):%s]"
  528. return $last
  529. }
  530. __my_ps1_ipaddr(){
  531. local last=$?
  532. test -z "$DISPLAY" && ! iswindows && ip-address [Addr:%s]
  533. return $last
  534. }
  535. __my_ps1_bttry(){
  536. local last=$?
  537. local bst="${TMP}/batterystatus"
  538. if test -z "$DISPLAY" && ! iswindows
  539. then
  540. test -f $bst && local bstr="$(cat $bst)"
  541. test -n "$bstr" && echo "[Battery:$bstr]"
  542. __my_battery_status %s >$bst &
  543. fi
  544. return $last
  545. }
  546. __my_ps1_dirs(){
  547. dirs | wc -l
  548. }
  549. __my_ps1_jobs(){
  550. jobs | wc -l
  551. }
  552. if test "$TERM" != dumb
  553. then
  554. __my_c1="\[\e[1;31m\]" # color for PWD
  555. __my_c2="\[\e[0;36m\]" # color for user
  556. __my_c3="\[\e[1;30m\]" # color for OLDPWD
  557. if test "`hostname`" = arch-aspireone; then __my_c4="\[\e[1;34m\]"
  558. elif test "`hostname`" = darwin-mba.local; then __my_c4="\[\e[1;33m\]"
  559. elif test "`hostname`" = newkiwi; then __my_c4="\[\e[1;35m\]"
  560. else __my_c4="\[\e[1;32m\]" # color for ::
  561. fi
  562. __my_cdef="\[\e[0m\]"
  563. fi
  564. _PS1="\
  565. ${__my_c4}:: ${__my_cdef}[${__my_c2}\u@\H${__my_cdef}:${__my_c1}\w/${__my_cdef}]\$(__my_ps1_scale)\$(__my_ps1_tmux)\$(__my_ps1_git)\$(__my_ps1_bttry)\$(__my_ps1_ipaddr)\$(__my_ps1_moc)\n\
  566. ${__my_c4}:: ${__my_cdef}l${SHLVL}n\#j\js\$? \D{%T} \$ "
  567. PS1=$_PS1
  568. __my_set_title(){
  569. title="$(echo $@)"
  570. case $TERM in
  571. (rxvt*|xterm*|aterm|screen*)
  572. test -t 1 &&
  573. test -n "$DISPLAY" &&
  574. test -z "$EMACS" &&
  575. echo -n -e "\033]0;${title}\007"
  576. ;;
  577. esac
  578. }
  579. PROMPT_COMMAND="__my_set_title \${USER}@\${HOSTNAME}\ \${PWD}"
  580. # copied from https://wiki.archlinux.org/index.php/X_resources
  581. invader(){
  582. # ANSI color scheme script featuring Space Invaders
  583. #
  584. # Original: http://crunchbanglinux.org/forums/post/126921/#p126921
  585. # Modified by lolilolicon
  586. #
  587. f=3 b=4
  588. for j in f b; do
  589. for i in {0..7}; do
  590. printf -v $j$i %b "\e[${!j}${i}m"
  591. done
  592. done
  593. bld=$'\e[1m'
  594. rst=$'\e[0m'
  595. cat << EOF
  596. $f1 ▀▄ ▄▀ $f2 ▄▄▄████▄▄▄ $f3 ▄██▄ $f4 ▀▄ ▄▀ $f5 ▄▄▄████▄▄▄ $f6 ▄██▄ $rst
  597. $f1 ▄█▀███▀█▄ $f2███▀▀██▀▀███ $f3▄█▀██▀█▄ $f4 ▄█▀███▀█▄ $f5███▀▀██▀▀███ $f6▄█▀██▀█▄$rst
  598. $f1█▀███████▀█ $f2▀▀███▀▀███▀▀ $f3▀█▀██▀█▀ $f4█▀███████▀█ $f5▀▀███▀▀███▀▀ $f6▀█▀██▀█▀$rst
  599. $f1▀ ▀▄▄ ▄▄▀ ▀ $f2 ▀█▄ ▀▀ ▄█▀ $f3▀▄ ▄▀ $f4▀ ▀▄▄ ▄▄▀ ▀ $f5 ▀█▄ ▀▀ ▄█▀ $f6▀▄ ▄▀$rst
  600. $bld$f1▄ ▀▄ ▄▀ ▄ $f2 ▄▄▄████▄▄▄ $f3 ▄██▄ $f4▄ ▀▄ ▄▀ ▄ $f5 ▄▄▄████▄▄▄ $f6 ▄██▄ $rst
  601. $bld$f1█▄█▀███▀█▄█ $f2███▀▀██▀▀███ $f3▄█▀██▀█▄ $f4█▄█▀███▀█▄█ $f5███▀▀██▀▀███ $f6▄█▀██▀█▄$rst
  602. $bld$f1▀█████████▀ $f2▀▀▀██▀▀██▀▀▀ $f3▀▀█▀▀█▀▀ $f4▀█████████▀ $f5▀▀▀██▀▀██▀▀▀ $f6▀▀█▀▀█▀▀$rst
  603. $bld$f1 ▄▀ ▀▄ $f2▄▄▀▀ ▀▀ ▀▀▄▄ $f3▄▀▄▀▀▄▀▄ $f4 ▄▀ ▀▄ $f5▄▄▀▀ ▀▀ ▀▀▄▄ $f6▄▀▄▀▀▄▀▄$rst
  604. $f7▌$rst
  605. $f7▌$rst
  606. $f7 ▄█▄ $rst
  607. $f7▄█████████▄$rst
  608. $f7▀▀▀▀▀▀▀▀▀▀▀$rst
  609. EOF
  610. }
  611. #/etc/lsb-release