1827|7

1万

帖子

25

TA的资源

版主

楼主
 

ASCII 动画圣诞树 [复制链接]

在终端(如mobaxterm、bash、linux子系统)中输入下面命令,可以显示一个好玩的圣诞树动画

 

curl 版本

curl https://raw.githubusercontent.com/sergiolepore/ChristBASHTree/master/tree-EN.sh | bash

 

wget版本

wget -qO- https://raw.githubusercontent.com/sergiolepore/ChristBASHTree/master/tree-EN.sh | bash

 

docker版本

docker pull sergiolepore/christbashtree:latest
docker run -it sergiolepore/christbashtree:latest

 

最新回复

搞定,顺便贴个源代码 #!/bin/bash trap "tput reset; tput cnorm; exit" 2 clear tput civis lin=2 col=$(($(tput cols) / 2)) c=$((col-1)) est=$((c-2)) color=0 tput setaf 2; tput bold # Tree for ((i=1; i<20; i+=2)) { tput cup $lin $col for ((j=1; j<=i; j++)) { echo -n \* } let lin++ let col-- } tput sgr0; tput setaf 3 # Trunk for ((i=1; i<=2; i++)) { tput cup $((lin++)) $c echo 'mWm' } new_year=$(date +'%Y') let new_year++ tput setaf 1; tput bold tput cup $lin $((c - 6)); echo MERRY CHRISTMAS tput cup $((lin + 1)) $((c - 10)); echo And lots of CODE in $new_year let c++ k=1 # Lights and decorations while true; do for ((i=1; i<=35; i++)) { # Turn off the lights [ $k -gt 1 ] && { tput setaf 2; tput bold tput cup ${line[$[k-1]$i]} ${column[$[k-1]$i]}; echo \* unset line[$[k-1]$i]; unset column[$[k-1]$i] # Array cleanup } li=$((RANDOM % 9 + 3)) start=$((c-li+2)) co=$((RANDOM % (li-2) * 2 + 1 + start)) tput setaf $color; tput bold # Switch colors tput cup $li $co echo o line[$k$i]=$li column[$k$i]=$co color=$(((color+1)%8)) # Flashing text sh=1 for l in C O D E do tput cup $((lin+1)) $((c+sh)) echo $l let sh++ sleep 0.01 done } k=$((k % 2 + 1)) done   [attach]666844[/attach]     详情 回复 发表于 2022-12-24 22:30
点赞 关注(1)
 

回复
举报

7244

帖子

2

TA的资源

版主

沙发
 

哈哈,这还挺有趣的!

 
 

回复

2万

帖子

340

TA的资源

版主

板凳
 

黑背景能换一下更有趣

点评

有代码,可以修改试试  详情 回复 发表于 2022-12-22 16:59
 
 
 

回复

1万

帖子

25

TA的资源

版主

4
 
qwqwqw2088 发表于 2022-12-22 16:04 黑背景能换一下更有趣

有代码,可以修改试试

 
 
 

回复

2万

帖子

71

TA的资源

管理员

5
 

氛围有了 :)

加EE小助手好友,
入技术交流群
EE服务号
精彩活动e手掌握
EE订阅号
热门资讯e网打尽
聚焦汽车电子软硬件开发
认真关注技术本身
个人签名

加油!在电子行业默默贡献自己的力量!:)

 
 
 

回复

7671

帖子

2

TA的资源

五彩晶圆(高级)

6
 

这个有点意思!

个人签名

默认摸鱼,再摸鱼。2022、9、28

 
 
 

回复

4942

帖子

12

TA的资源

版主

7
 

搞定,顺便贴个源代码

#!/bin/bash
trap "tput reset; tput cnorm; exit" 2
clear
tput civis
lin=2
col=$(($(tput cols) / 2))
c=$((col-1))
est=$((c-2))
color=0
tput setaf 2; tput bold

# Tree
for ((i=1; i<20; i+=2))
{
    tput cup $lin $col
    for ((j=1; j<=i; j++))
    {
        echo -n \*
    }
    let lin++
    let col--
}

tput sgr0; tput setaf 3

# Trunk
for ((i=1; i<=2; i++))
{
    tput cup $((lin++)) $c
    echo 'mWm'
}
new_year=$(date +'%Y')
let new_year++
tput setaf 1; tput bold
tput cup $lin $((c - 6)); echo MERRY CHRISTMAS
tput cup $((lin + 1)) $((c - 10)); echo And lots of CODE in $new_year
let c++
k=1

# Lights and decorations
while true; do
    for ((i=1; i<=35; i++)) {
        # Turn off the lights
        [ $k -gt 1 ] && {
            tput setaf 2; tput bold
            tput cup ${line[$[k-1]$i]} ${column[$[k-1]$i]}; echo \*
            unset line[$[k-1]$i]; unset column[$[k-1]$i]  # Array cleanup
        }

        li=$((RANDOM % 9 + 3))
        start=$((c-li+2))
        co=$((RANDOM % (li-2) * 2 + 1 + start))
        tput setaf $color; tput bold   # Switch colors
        tput cup $li $co
        echo o
        line[$k$i]=$li
        column[$k$i]=$co
        color=$(((color+1)%8))
        # Flashing text
        sh=1
        for l in C O D E
        do
            tput cup $((lin+1)) $((c+sh))
            echo $l
            let sh++
            sleep 0.01
        done
    }
    k=$((k % 2 + 1))
done

 

 

点评

简单又好玩  详情 回复 发表于 2022-12-25 10:56
 
 
 

回复

1万

帖子

25

TA的资源

版主

8
 
吾妻思萌 发表于 2022-12-24 22:30 搞定,顺便贴个源代码 #!/bin/bash trap "tput reset; tput cnorm; exit" 2 clear tput civis lin ...

简单又好玩

 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/7 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表