Clear Your Terminal in Style

栏目: IT技术 · 发布时间: 5年前

内容简介:If you’re someone like me who habitually clears their terminal, sometimes you want a little excitement in your life. Here is a way to do just that.This post revolves around the idea of giving a command a percent chance of running. While the topic at hand i

If you’re someone like me who habitually clears their terminal, sometimes you want a little excitement in your life. Here is a way to do just that.

Percent Chance for command to run

This post revolves around the idea of giving a command a percent chance of running. While the topic at hand is not serious, this simple technique has potential in your scripts.

[ $[$RANDOM % 10] = 0 ] && do_this || do_that

This gives roughly a 1 in 10 chance of do_this running, and a 9 in 10 chance of do_that running. You can omit || do_that to just have a 10 percent chance of do_this running.

Like Russian roulette?

[ $[$RANDOM % 6] = 0 ] && sudo rm -rf / || echo "Not today"

Cbeams

Jonathan Hartley (tartley on GitHub), creater of the popular colorama python module, also made a cool little terminal application tool called cbeams. We can use his animation with a little bit of bash goodness to clear our terminal.

pip install cbeams

This is the animation command, which overwrites the current text on the terminal:

cbeams -o

To attach it to clear, we extend the command’s functionality:

alias clear='[ $[$RANDOM % 10] = 0 ] && timeout 6 cbeams -o; clear || clear'

This way, there is a 10% chance of the cbeams command running. When it runs, it will look like this:

Clear Your Terminal in Style

SL

The SL command stands for steam locomotive. It came about because of how often people mistype ls. Instead of this use, how nice would it be if a train ran the error logs you’re getting off the screen!

sudo apt install sl

alias clear='[ $[$RANDOM % 10] = 0 ] && sl; clear || clear'

Clear Your Terminal in Style

Cmatrix

The cmatrix command is based off the digital rain animation from the opening scenes of Matrix movie series.

sudo apt install cmatrix

alias clear='[ $[$RANDOM % 10] = 0 ] && timeout 3 cmatrix; clear || clear'

Clear Your Terminal in Style

Extra: VT100 Files

Here’s a piece of terminal history. VT100 is a video terminal made in 1978. There are archives of animations made with this tool – some dating back more than 40 years ago. They are a lot of fun to look back on. I can’t imagine how much time it took to make some of these. Take a look at a large archive from here . They also provide a perl script which allows you to view the files at the speed they were meant to be seen, here .

Here is a recording of a twilight zone animation I found particularly impressive:


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

算法设计与分析

算法设计与分析

屈婉玲、刘田、张立昂、王捍贫 / 清华大学 / 2011-5 / 25.00元

《算法设计与分析》为计算机科学技术专业核心课程“算法设计与分析”教材.全书以算法设计技术和分析方法为主线来组织各知识单元,主要内容包括基础知识、分治策略、动态规划、贪心法、回溯与分支限界、算法分析与问题的计算复杂度、NP完全性、近似算法、随机算法、处理难解问题的策略等。书中突出对问题本身的分析和求解方法的阐述,从问题建模、算法设计与分析、改进措施等方面给出适当的建议,同时也简要介绍了计算复杂性理论......一起来看看 《算法设计与分析》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具