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.
 
 
 
 
 
 

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