我为我最喜欢的推文创建了一个自定义财富文件,格式为 tweet,然后在新行中添加 @username。示例如下:
“你变了。”
“是的我知道,我是一个变形金刚。”@LetsQuoteComedy
我想用不同的颜色显示推文,比如白色,用另一种颜色显示@用户名,比如黑色。我该如何在终端中做到这一点?
另外,我想将其放入我的.bashrc
文件中。
答案1
来源:着色命令输出
代码:
#!/bin/bash
OIFS=$IFS #save old IFS
frtn=$(fortune tweets) #load up a fortune
IFS='@' #new IFS
arr=($frtn) #split fortune into array along IFS
tweet=$(tput setaf 3)"${arr[0]}"$(tput setaf default) #tweet - dark yellow color
uname=$(tput setaf 7)"@${arr[1]}\n"$(tput setaf default) #create @username - white
echo -e "$tweet$uname"; #to retain newlines in original fortune, echo between quotes
IFS=$OIFS #restore old IFS
只需将其复制粘贴到您的.bashrc
文件中即可。
编辑
结果: