码迷,mamicode.com
首页 > 系统相关 > 详细

linux命令学习-首篇

时间:2014-05-08 15:54:08      阅读:439      评论:0      收藏:0      [点我收藏+]

标签:linux   bash   

在home目录的.bashrc 添加了如下逻辑,目的是可以"每日"学习或复习linux命令


# 学习linux命令
# echo "Did you know that:"; whatis $(ls /bin | shuf -n 1)
cowsay -f $(ls /usr/share/cowsay/cows | shuf -n 1 | cut -d. -f1) $(whatis $(ls /bin) 2>/dev/null | shuf -n 1)


效果图:

bubuko.com,布布扣


参考文章: http://www.geekfan.net/6603/


上面逻辑的解读:


前置基础知识点:

$(xxx) : 即运行bash脚本且得到脚本的输出信息(字符串)

2>/dev/null : 错误输出重定向到黑洞(垃圾箱),支除噪音 注: /dev/null是linux的空设备

cowsay: 是生成ASCII图像的程序,显示一头牛在说话;

whatis : 输出某个linux命令的功能简介; 

shuf: 将内容随机输出;


具体逻辑分析:

echo "Did you know that:"; whatis $(ls /bin | shuf -n 1)
1.ls /bin 列出/bin目录下的linux命令;
2.shuf -n 1 随机选择一条linux命令;
3.输出命令的功能简介


cowsay -f $(ls /usr/share/cowsay/cows | shuf -n 1 | cut -d. -f1) $(whatis $(ls /bin) 2>/dev/null | shuf -n 1)

1.如上 $(whatis $(ls /bin) 2>/dev/null | shuf -n 1) 获取命令功能简介;

2.随机选一个图片主角,说话的小动物 ls /usr/share/cowsay/cows | shuf -n 1 | cut -d. -f1 

3.输出内容(ASCII 图)

linux命令学习-首篇,布布扣,bubuko.com

linux命令学习-首篇

标签:linux   bash   

原文地址:http://blog.csdn.net/scholar_ii/article/details/25278519

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!