6

如何让 bash 脚本有一个很酷的标题

目前我只是使用 echo 将名称 arg clicker 赋予我的脚本

我如何制作 fnacy bash sript 徽标而不是一条无聊的线

像下面这样:

就像这个外壳顶部的标志一样

4

3 回答 3

2

看看tput命令。tput用于改变终端特性。

例如

tput bold
tput setaf 3
tput setab 4
tput reset
于 2013-04-15T23:16:25.450 回答
1

尝试安装 'boxes' - 从手册页:

描述 Boxes 是一个文本过滤器,可以在其输入文本周围绘制任何类型的框。盒子设计选择范围从简单的盒子到复杂的 ASCII 艺术。一个盒子也可以被移除和修复,即使它因编辑里面的文本而被严重损坏。由于框可以在任何一侧打开,因此框也可用于以任何编程语言创建区域注释。通过附加到自由格式的配置文件,可以轻松添加和共享各种新的盒子设计。box 最初打算与 vim(1) 文本编辑器一起使用,但它可以绑定到任何支持过滤器的文本编辑器,也可以作为独立工具从命令行调用。

$ boxes -h
boxes - draws any kind of box around your text (and removes it)
        (c) Thomas Jensen <boxes@thomasjensen.com>
        Web page: http://boxes.thomasjensen.com/
Usage:  boxes [options] [infile [outfile]]
        -a fmt   alignment/positioning of text inside box [default: hlvt]
        -c str   use single shape box design where str is the W shape
        -d name  box design [default: first one in file]
        -f file  configuration file
        -h       print usage information
        -i mode  indentation mode [default: box]
        -k bool  leading/trailing blank line retention on removal
        -l       list available box designs w/ samples
        -m       mend box, i.e. remove it and redraw it afterwards
        -p fmt   padding [default: none]
        -r       remove box
        -s wxh   box size (width w and/or height h)
        -t str   tab stop distance and expansion [default: 8e]
        -v       print version information

:)
戴尔

于 2016-02-13T16:46:38.603 回答
1

有一些网站可以做到。看看这个网站: http ://www.kammerl.de/ascii/AsciiSignature.php

于 2016-02-12T21:28:27.097 回答