lolcat 输出彩色格言
#!/bin/bash# 下载fortune 格言信息yum install -y fortune-mod-1.99.1-17.el7.x86_64# 下载会说话的小动物插件yum install -y cowsay# 下载大字插件yum install -y figlet# 下载格言包 内含4个语言包 英文格言、中文格言、唐诗、宋词git clone https://github.com/ruanyf/fortunes.git# 添加索引信息strfile fortunes/data/fortunesstrfile fortunes/data/chinesestrfile fortunes/data/tang300strfile fortunes/data/song100# 将语言包拷贝到默认位置\cp -rf fortunes/data/* /usr/share/games/fortune/cat >> /etc/profile.d/hello.sh <<EOFfortune -e tang300 song100 chinese fortunes | cow ...



