自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

這六個(gè) Linux 命令,每個(gè)都很炫酷!

系統(tǒng) Linux
自打進(jìn)入技術(shù)運(yùn)維領(lǐng)域,相信很多小伙伴每日都是技術(shù)身傍(綁),Linux 、docker、k8s、devops,發(fā)布、升級(jí)、當(dāng)然可能還有“刪庫(kù)”。

 [[435243]]

  

 正文   

自打進(jìn)入技術(shù)運(yùn)維領(lǐng)域,相信很多小伙伴每日都是技術(shù)身傍(綁),Linux 、docker、k8s、devops,發(fā)布、升級(jí)、當(dāng)然可能還有“刪庫(kù)”

日日996,回家單身狗..別人的黑眼圈可能是多人運(yùn)動(dòng)(王者五排)熬得,但我們的黑眼圈一定是半夜加班熬得!

雖然身邊鮮有妹子,但是咱們撩妹的技能可不能缺少,畢竟機(jī)會(huì)總是留給“有準(zhǔn)備”的人,作為資深技術(shù)攻城獅,今天就教大家?guī)渍屑夹g(shù)“撩妹術(shù)”

asciiview

自從有了你,黑與白的世界也可以五彩繽紛

安裝指令如下; 

  1. sudo apt-get install aview imagemagick  
  2. asciiview kobe.jpg 

執(zhí)行結(jié)果如下;(致敬蝸殼)

 

PS:可更換妹子的照片,ohoho

oneko

我的系統(tǒng)里養(yǎng)了一只小貓,它的名字叫“愛(ài)你”

你就是鼠標(biāo),我便是“愛(ài)你”,一直追著鼠標(biāo)跑

安裝指令如下; 

  1. sudo apt-get install ninvaders 

執(zhí)行結(jié)果如下;

cmatrix

今天沒(méi)見(jiàn)你,我的系統(tǒng)為你下起了“大雨”

安裝指令如下; 

  1. sudo apt-get install cmatrix 

執(zhí)行結(jié)果如下;

pipe

手?jǐn)] pipe

做我女朋友,我將為你筑起無(wú)數(shù)愛(ài)的城墻

腳本如下所示; 

  1. #!/bin/bash  
  2. # The author of the original script is unknown to me. The first entry I can  
  3. # find was posted at 2010-03-21 09:50:09 on Arch Linux Forums (doesn't mean the  
  4. # poster is the author at all):  
  5.  
  6. #   Post your handy self made command line utilities (Page 37) / Programming & Scripting / Arch Linux Forums  
  7.  
  8. # I, Yu-Jie Lin, made a few changes and additions:  
  9.  
  10. #   -p, -t, -R, and -C  
  11.  
  12. #   Screenshot: http://flic.kr/p/dRnLVj  
  13. #   Screencast: http://youtu.be/5XnGSFg_gTk  
  14.  
  15. # And push the commits to Gist:  
  16.  
  17. #   https://gist.github.com/4689307  
  18.  
  19. # I, Devin Samarin, made a few changes and additions:  
  20.  
  21. #   -r can be 0 to mean "no limit".  
  22. #   Reset cursor visibility after done.  
  23. #   Cleanup for those people who want to quit with ^C  
  24.  
  25. #   Pushed the changes to https://gist.github.com/4725048  
  26. #   hole1: https://gist.githubusercontent.com/livibetter/4689307/raw/949e43fe2962c2c97c8b1d974ff93dd053d9bd37/pipes.sh  
  27. #   hole2: Fun On The Terminal Part 2  
  28. p=1  
  29. f=75 s=13 r=2000 t=0  
  30. w=$(tput cols) h=$(tput lines) 
  31. # ab -> idx = a*4 + b  
  32. # 0: up, 1: right, 2: down, 3: left  
  33. # 00 means going up   , then going up   -> ┃  
  34. # 12 means going right, then going down -> ┓  
  35. sets=(  
  36.     "┃┏ ┓┛━┓  ┗┃┛┗ ┏━"  
  37.     "│╭ ╮╯─╮  ╰│╯╰ ╭─"  
  38.     "│┌ ┐┘─┐  └│┘└ ┌─"  
  39.     "║╔ ╗╝═╗  ╚║╝╚ ╔═"  
  40.  
  41. v="${sets[0]}"  
  42. RNDSTART=0  
  43. NOCOLOR=0  
  44. OPTIND=1  
  45. while getopts "p:t:f:s:r:RCh" arg; do  
  46. case $arg in  
  47.     p) ((p=(OPTARG>0)?OPTARG:p));; 
  48.     t) ((OPTARG>=0 && OPTARG<${#sets[@]})) && v="${sets[OPTARG]}";;  
  49.     f) ((f=(OPTARG>19 && OPTARG<101)?OPTARG:f));;  
  50.     s) ((s=(OPTARG>4 && OPTARG<16 )?OPTARG:s));;  
  51.     r) ((r=(OPTARG>=0)?OPTARG:r));;  
  52.     R) RNDSTART=1;; 
  53.     C) NOCOLOR=1;;  
  54.     h) echo -e "Usage: $(basename $0) [OPTION]..."  
  55.         echo -e "Animated pipes terminal screensaver.\n"  
  56.         echo -e " -p [1-]\tnumber of pipes (D=1)."  
  57.         echo -e " -t [0-$((${#sets[@]} - 1))]\ttype of pipes (D=0)."  
  58.         echo -e " -f [20-100]\tframerate (D=75)."  
  59.         echo -e " -s [5-15]\tprobability of a straight fitting (D=13)."  
  60.         echo -e " -r LIMIT\treset after x characters, 0 if no limit (D=2000)."  
  61.         echo -e " -R \t\trandom starting point."  
  62.         echo -e " -C \t\tno color."  
  63.         echo -e " -h\t\thelp (this screen).\n"  
  64.         exit 0;;  
  65.     esac  
  66. done  
  67. cleanup() {  
  68.     tput rmcup  
  69.     tput cnorm  
  70.     exit 0  
  71.  
  72. trap cleanup SIGHUP SIGINT SIGTERM  
  73. for (( i=1; i<=p; i++ )); do  
  74.     c[i]=$((i%8)) n[i]=0 l[i]=0  
  75.     ((x[i]=RNDSTART==1?RANDOM*w/32768:w/2))  
  76.     ((y[i]=RNDSTART==1?RANDOM*h/32768:h/2))  
  77. done  
  78. tput smcup  
  79. tput reset  
  80. tput civis  
  81. while ! read -t0.0$((1000/f)) -n1; do  
  82.     for (( i=1; i<=p; i++ )); do  
  83.         # New position:  
  84.         ((${l[i]}%2)) && ((x[i]+=-${l[i]}+2,1)) || ((y[i]+=${l[i]}-1))  
  85.         # Loop on edges (change color on loop):  
  86.         ((${x[i]}>w||${x[i]}<0||${y[i]}>h||${y[i]}<0)) && ((c[i]=RANDOM%8))  
  87.         ((x[i]=(x[i]+w)%w))  
  88.         ((y[i]=(y[i]+h)%h))  
  89.         # New random direction:  
  90.         ((n[i]=RANDOM%s-1))  
  91.         ((n[i]=(${n[i]}>1||${n[i]}==0)?${l[i]}:${l[i]}+${n[i]}))  
  92.         ((n[i]=(${n[i]}<0)?3:${n[i]}%4))  
  93.         # Print:  
  94.         tput cup ${y[i]} ${x[i]}  
  95.         [[ $NOCOLOR == 0 ]] && echo -ne "\033[1;3${c[i]}m"  
  96.         echo -n "${v:l[i]*4+n[i]:1}"  
  97.         l[i]=${n[i]}  
  98.     done  
  99.     ((r>0 && t*p>=r)) && tput reset && tput civis && t=0 || ((t++))  
  100. done  
  101. cleanup 

執(zhí)行結(jié)果如下;

sl

我的“火車”,拉滿愛(ài)意,只為奔你而來(lái) 

  1. sudo apt-get install sl 

執(zhí)行結(jié)果如下:

ninvaders

帶妹子展示,最“遠(yuǎn)古版”太空侵略者

安裝指令如下; 

  1. sudo apt-get install ninvaders 

執(zhí)行結(jié)果如下;

預(yù)祝廣大程序員同胞,早日脫單~ 

 

責(zé)任編輯:龐桂玉 來(lái)源: 良許Linux
相關(guān)推薦

2024-01-09 08:07:09

JSThreeJSCSS

2016-07-21 14:36:34

操作系統(tǒng)Linux終端命令

2021-08-23 11:35:00

工具yyds開(kāi)源

2017-08-30 19:11:38

Linux命令行tab

2021-09-03 09:57:13

開(kāi)源技術(shù) 項(xiàng)目

2010-12-28 10:12:18

Linux命令

2020-06-02 16:05:59

Linux終端命令

2016-01-04 15:20:46

2016趨勢(shì)互聯(lián)網(wǎng)

2024-12-04 09:27:56

2022-10-18 07:56:08

Linux網(wǎng)絡(luò)命令

2019-07-19 20:34:32

2024-04-11 08:29:35

Kafka異步發(fā)送發(fā)送端重試

2014-08-20 13:59:13

Linux

2010-09-07 14:42:28

2022-05-02 16:18:22

RocketMQBrokertopic

2018-04-02 10:37:10

Linux命令size

2009-06-04 15:48:11

SUSE Linux解密

2022-04-04 07:31:46

微服務(wù)微服務(wù)安全

2022-07-03 08:14:30

VS Code主題

2017-03-06 15:15:57

Linuxfile實(shí)例
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)