Bash-Insulter:一個在輸入錯誤命令時嘲諷使用者的指令碼
這是一個非常有趣的指令碼,每當使用者在終端輸入錯誤的命令時,它都會嘲諷使用者。
它讓你在解決一些問題時會感到快樂。有的人在受到終端嘲諷的時候感到不愉快。但是,當我受到終端的批評時,我真的很開心。
這是一個有趣的 CLI 工具,在你弄錯的時候,會用隨機短語嘲諷你。此外,它允許你新增自己的短語。
如何在 Linux 上安裝 Bash-Insulter?
在安裝 Bash-Insulter 之前,請確保你的系統上安裝了 git。如果沒有,請使用以下命令安裝它。
對於 Fedora 系統, 請使用 DNF 命令 安裝 git。
$ sudo dnf install git
對於 Debian/Ubuntu 系統,請使用 APT-GET 命令 或者 APT 命令 安裝 git。
$ sudo apt install git
對於基於 Arch Linux 的系統,請使用 Pacman 命令 安裝 git。
$ sudo pacman -S git
對於 RHEL/CentOS 系統,請使用 YUM 命令 安裝 git。
$ sudo yum install git
對於 openSUSE Leap 系統,請使用 Zypper 命令 安裝 git。
$ sudo zypper install git
我們可以通過克隆開發人員的 GitHub 儲存庫輕鬆地安裝它。
首先克隆 Bash-insulter 儲存庫。
$ git clone https://github.com/hkbakke/bash-insulter.git bash-insulter
將下載的檔案移動到資料夾 /etc
下。
$ sudo cp bash-insulter/src/bash.command-not-found /etc/
將下面的程式碼新增到 /etc/bash.bashrc
檔案中。
$ vi /etc/bash.bashrc
#Bash Insulter
if [ -f /etc/bash.command-not-found ]; then
. /etc/bash.command-not-found
fi
執行以下命令使更改生效。
$ sudo source /etc/bash.bashrc
你想測試一下安裝是否生效嗎?你可以試試在終端上輸入一些錯誤的命令,看看它如何嘲諷你。
$ unam -a
$ pin 2daygeek.com
如果你想附加你自己的短語,則導航到以下檔案並更新它。你可以在 messages
部分中新增短語。
# vi /etc/bash.command-not-found
print_message () {
local messages
local message
messages=(
"Boooo!"
"Don't you know anything?"
"RTFM!"
"Haha, n00b!"
"Wow! That was impressively wrong!"
"Pathetic"
"The worst one today!"
"n00b alert!"
"Your application for reduced salary has been sent!"
"lol"
"u suk"
"lol... plz"
"plz uninstall"
"And the Darwin Award goes to.... ${USER}!"
"ERROR_INCOMPETENT_USER"
"Incompetence is also a form of competence"
"Bad."
"Fake it till you make it!"
"What is this...? Amateur hour!?"
"Come on! You can do it!"
"Nice try."
"What if... you type an actual command the next time!"
"What if I told you... it is possible to type valid commands."
"Y u no speak computer???"
"This is not Windows"
"Perhaps you should leave the command line alone..."
"Please step away from the keyboard!"
"error code: 1D10T"
"ACHTUNG! ALLES TURISTEN UND NONTEKNISCHEN LOOKENPEEPERS! DAS KOMPUTERMASCHINE IST NICHT FÜR DER GEFINGERPOKEN UND MITTENGRABEN! ODERWISE IST EASY TO SCHNAPPEN DER SPRINGENWERK, BLOWENFUSEN UND POPPENCORKEN MIT SPITZENSPARKEN. IST NICHT FÜR GEWERKEN BEI DUMMKOPFEN. DER RUBBERNECKEN SIGHTSEEREN KEEPEN DAS COTTONPICKEN HÄNDER IN DAS POCKETS MUSS. ZO RELAXEN UND WATSCHEN DER BLINKENLICHTEN."
"Pro tip: type a valid command!"
"Go outside."
"This is not a search engine."
"(╯°□°)╯︵ ┻━┻"
"¯\_(ツ)_/¯"
"So, I'm just going to go ahead and run rm -rf / for you."
"Why are you so stupid?!"
"Perhaps computers is not for you..."
"Why are you doing this to me?!"
"Don't you have anything better to do?!"
"I am _seriously_ considering 'rm -rf /'-ing myself..."
"This is why you get to see your children only once a month."
"This is why nobody likes you."
"Are you even trying?!"
"Try using your brain the next time!"
"My keyboard is not a touch screen!"
"Commands, random gibberish, who cares!"
"Typing incorrect commands, eh?"
"Are you always this stupid or are you making a special effort today?!"
"Dropped on your head as a baby, eh?"
"Brains aren't everything. In your case they're nothing."
"I don't know what makes you so stupid, but it really works."
"You are not as bad as people say, you are much, much worse."
"Two wrongs don't make a right, take your parents as an example."
"You must have been born on a highway because that's where most accidents happen."
"If what you don't know can't hurt you, you're invulnerable."
"If ignorance is bliss, you must be the happiest person on earth."
"You're proof that god has a sense of humor."
"Keep trying, someday you'll do something intelligent!"
"If shit was music, you'd be an orchestra."
"How many times do I have to flush before you go away?"
)
via: https://www.2daygeek.com/bash-insulter-insults-the-user-when-typing-wrong-command/
作者:Magesh Maruthamuthu 選題:lujun9972 譯者:zero-mk 校對:wxy
訂閱“Linux 中國”官方小程式來檢視
相關文章
- python輸入錯誤密碼使用者鎖定Python密碼
- macbook開機登入時輸入正確的密碼卻提示密碼錯誤Mac密碼
- 執行指令碼寫入中間表錯誤返回錯誤資訊指令碼
- Python 指令碼中呼叫 Java 程式時 Classpath 錯誤Python指令碼Java
- SOLIDWORKS啟動時出現指令碼錯誤問題Solid指令碼
- sqlplus執行指令碼時遇到錯誤自動停止SQL指令碼
- Bash 指令碼中的錯誤處理指令碼
- bzoj3207: 花神的嘲諷計劃Ⅰ(hash+主席樹)
- 在vue生命週期裡呼叫函式時犯的一個錯誤Vue函式
- UE4 在socket中傳輸中文資料時錯誤
- 編寫 SQL 程式碼時常犯的九個錯誤SQL
- 總結一篇shell除錯技巧及常見的指令碼錯誤除錯指令碼
- 輸入一個ASCII碼,輸出對應的字元ASCII字元
- 輸入驗證碼登入時,send_keys () 報錯
- Camstar 登入時出現單個Error的錯誤提示Error
- ssm+shrio 在登入時輸入的賬號密碼與資料庫一致,但還是報錯SSM密碼資料庫
- 檔案格式引起的指令碼執行錯誤指令碼
- 一對一視訊原始碼,登入時輸入密碼時的顯示密碼按鈕原始碼密碼
- Linux的標準輸入、標準輸出和標準錯誤Linux
- “打得不錯”:為什麼《爐石》玩家可以默契地用禮貌詞語進行嘲諷?
- 獻給命令列重度使用者的一組實用 BASH 指令碼命令列指令碼
- 第一個錯誤的版本
- Linux 定時執行指令碼、命令Linux指令碼
- shell指令碼執行錯誤 $‘\r‘:command not found指令碼
- 解決shell指令碼錯誤$’r’ command not found指令碼
- 2024.11.1 一個錯誤
- 根據教程中,輸錯密碼或使用者名稱後,卻不能返回‘使用者名稱或密碼錯誤’密碼
- 在系統建立新使用者時傳送郵件的 Bash 指令碼指令碼
- PHP 避免同時執行一個指令碼PHP指令碼
- 亞馬遜嘲諷甲骨文:沒有新公司會用Oracle亞馬遜Oracle
- 新增多個使用者的shell指令碼指令碼
- 在 Linux 上如何得到一個段錯誤的核心轉儲Linux
- 配置Java環境變數時的一個常見錯誤Java變數
- 管道符 (|) 是 Unix/Linux 系統中用於將一個命令的輸出傳遞給另一個命令作為輸入的符號Linux符號
- 使用者登入管理的幾個命令
- 使用Python時常見的9個錯誤Python
- hal 編碼器做使用者輸入時捕獲初值的設定
- 在opendaylight專案開發時,執行maven命令生成專案骨架時,出現錯誤。Maven