Home Operation and Maintenance Linux Operation and Maintenance 19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!

19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!

Aug 04, 2023 pm 04:45 PM
linux linux command



1. sl command

You will see a train going from the right side of the screen to the left...

Install

$ sudo apt-get install sl
Copy after login

Run

The
$ sl
Copy after login

command has several options -a l F e,

-a An accident seems to happen. You'll feel pity for people who cry for help.

-l shows little one.

-F It flies.

-e Allow interrupt by Ctrl+C.
Copy after login


19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!

can be given When someone plays a prank and he types ls, it will be very effective if you don’t know it

$alias ls=sl
Copy after login

2. fortune command

Output a sentence, including jokes, famous quotes, etc. (and Tang poetry and Song lyrics sudo apt-get install fortune-zh)

安装

$sudo apt-get install fortune
Copy after login

运行

$fortune
Copy after login

19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!

3. cowsay 命令

用ASCII字符打印牛,羊等动物,还有个cowthink,这个是奶牛想,那个是奶牛说,哈哈,差不多

安装

$sudo apt-get install cowsay
Copy after login

运行

$cowsay "I am not a cow, hahaha"
Copy after login


19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!

$cowsay -l 查看其它动物的名字,然后 -f 跟上动物名,如

$cowsay -f tux "坑爹啊"
Copy after login

19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!

还可以让cowsay说出fortune的内容,就像这样:

$fortune | cowsay
Copy after login


19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!

4. cmatrix 命令

这个很酷!《黑客帝国》那种矩阵风格的动画效果

安装

$ sudo apt-get install cmatrix
Copy after login

运行

$cmatrix
Copy after login


19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!

5. figlet 、toilet命令

艺术字生成器,由ASCII字符组成,把文本显示成标题栏。此外还有banner这个命令

安装

$sudo apt-get install figlet

$sudo apt-get install toilet
Copy after login

运行

$figlet fuck you !

$toilet i love you
Copy after login


19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!

toilet 还可以添加颜色,里面的选项请自己 man 一下

$ toilet -f mono12 -F gay a girl
Copy after login

19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!

6. oneko 命令

桌面上出现一直喵星人,跟着你的鼠标跑,你不动了它就睡觉。哈哈,这个挺不错

安装

$sudo apt-get install oneko
Copy after login

运行

$oneko
Copy after login

要关掉这家伙,按ctrl+c 结束

19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!

7. xeyes 命令

在屏幕上出现一双眼睛,盯着你的鼠标指针

安装运行同上

19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!

8. yes 命令

输出无穷无尽的字符,按ctrl+c结束,如

$yes 我很NB
Copy after login

9. cal 9 1752

cal是打印日历,不过这个是很奇葩的一个月,

19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!

10. shred

覆盖搞乱文件,就是文档粉碎,哈哈,要把你私藏的大片种子和电影销毁,不被恢复出来,就靠它了

11. factor

分解因数,这个……小学生可以用一下

19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!

12. 挨个敲下面这一堆,aptitude 没有的可以安装上

aptitude moo

aptitude -v moo

aptitude -vv moo

aptitude -vvv moo

aptitude -vvvv moo

aptitude -vvvvv moo

aptitude -vvvvvv moo

aptitude -vvvvvvv moo
Copy after login

13、高大上仪表盘blessed-contrib——假装自己指点江山,纵横捭阖

sudo apt-get install npm
sudo apt install nodejs-legacy
git clone https://github.com/yaronn/blessed-contrib.git
cd blessed-contrib
npm install
node ./examples/dashboard.js
Copy after login

高大上黑客仪表盘

19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!

14、高大上仪表盘hollywood——假装自己日理万机,宵衣旰食

Dustin Kirkland 利用一个长途飞行的时间,编写了这个炫酷、有趣但也没什么实际作用的软件。

在其它Linux发行版中,可以通过以下命令安装并运行。

sudo apt-add-repository ppa:hollywood/ppa
sudo apt-get install hollywood
sudo apt-get install byobu
hollywood
Copy after login


19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!

15、追逐鼠标的小猫oneko

在桌面的命令行界面输入

sudo apt-get install oneko
oneko
Copy after login

然后输入oneko,即可看到效果。

19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!


16、ASCII艺术框:box命令


sudo apt-get install boxes
echo "Tongji Univerisity" | boxes
echo "Tongji Univerisity" | boxes -d dog
fortune | boxes -d cat | lolcat
Copy after login


19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!


17、燃起字符串大火aafire在命令行界面输入

sudo apt-get install libaa-bin
aafire
Copy after login

然后输入 aafire,即可看到效果

19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!

aafire字符串大火

18、图片转字符串

这条命令在树莓派上运行会出问题,建议在云主机或虚拟机上运行。

sudo apt-get install aview imagemagick
wget http://labfile.oss.aliyuncs.com/courses/1/Linus.png
asciiview Linus.png
Copy after login


19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!


19、从删库到跑路 sudo rm -rf /*


sudo rm -rf /*
sudo:获取root管理员权限
rm:remove,即删除
-rf:r表示递归删除,即删除所有的子目录,f表示不需要再进行确认
/:根目录
*:所有文件
Copy after login


19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!


友情提示:千万不要轻易尝试这个命令,特别是在运行有网站服务器、数据库的Linux主机上 。

这些好玩的命令可以通过查 man 手册,然后在加上自己想出来的创意,改编成更多有趣的东西,哈哈,给别人捣乱也是挺好玩的……


The above is the detailed content of 19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1664
14
PHP Tutorial
1268
29
C# Tutorial
1248
24
Linux Architecture: Unveiling the 5 Basic Components Linux Architecture: Unveiling the 5 Basic Components Apr 20, 2025 am 12:04 AM

The five basic components of the Linux system are: 1. Kernel, 2. System library, 3. System utilities, 4. Graphical user interface, 5. Applications. The kernel manages hardware resources, the system library provides precompiled functions, system utilities are used for system management, the GUI provides visual interaction, and applications use these components to implement functions.

How to check the warehouse address of git How to check the warehouse address of git Apr 17, 2025 pm 01:54 PM

To view the Git repository address, perform the following steps: 1. Open the command line and navigate to the repository directory; 2. Run the "git remote -v" command; 3. View the repository name in the output and its corresponding address.

vscode Previous Next Shortcut Key vscode Previous Next Shortcut Key Apr 15, 2025 pm 10:51 PM

VS Code One-step/Next step shortcut key usage: One-step (backward): Windows/Linux: Ctrl ←; macOS: Cmd ←Next step (forward): Windows/Linux: Ctrl →; macOS: Cmd →

How to run sublime after writing the code How to run sublime after writing the code Apr 16, 2025 am 08:51 AM

There are six ways to run code in Sublime: through hotkeys, menus, build systems, command lines, set default build systems, and custom build commands, and run individual files/projects by right-clicking on projects/files. The build system availability depends on the installation of Sublime Text.

How to run java code in notepad How to run java code in notepad Apr 16, 2025 pm 07:39 PM

Although Notepad cannot run Java code directly, it can be achieved by using other tools: using the command line compiler (javac) to generate a bytecode file (filename.class). Use the Java interpreter (java) to interpret bytecode, execute the code, and output the result.

What is the main purpose of Linux? What is the main purpose of Linux? Apr 16, 2025 am 12:19 AM

The main uses of Linux include: 1. Server operating system, 2. Embedded system, 3. Desktop operating system, 4. Development and testing environment. Linux excels in these areas, providing stability, security and efficient development tools.

laravel installation code laravel installation code Apr 18, 2025 pm 12:30 PM

To install Laravel, follow these steps in sequence: Install Composer (for macOS/Linux and Windows) Install Laravel Installer Create a new project Start Service Access Application (URL: http://127.0.0.1:8000) Set up the database connection (if required)

git software installation git software installation Apr 17, 2025 am 11:57 AM

Installing Git software includes the following steps: Download the installation package and run the installation package to verify the installation configuration Git installation Git Bash (Windows only)

See all articles