博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
RH033读书笔记(6)-Lab 7 Standard I/O and Pipes
阅读量:6318 次
发布时间:2019-06-22

本文共 1344 字,大约阅读时间需要 4 分钟。

Lab 7 Standard I/O and Pipes

1. [student@stationX ~]$ cat /proc/cpuinfo /proc/meminfo

2. [student@stationX ~]$ cat /proc/cpuinfo /proc/meminfo | less

3. [student@stationX ~]$ cat /proc/cpuinfo /proc/meminfo | mail -s "System Stats for $(hostname)" root@localhost

4. Check the email account root@localhost

• Log in as root
• Run the command mutt.
• press y.
• Select the message you want to view with the up and down arrows and press Enter to
view it.
• Note that while viewing a message, the up and down arrows move between messages,
not lines. To scroll within the current message, use Enter and Backspace
• Press q to exit message view

5. [student@stationX ~]$ date > cpumem.info

[student@stationX ~]$ cat /proc/cpuinfo /proc/meminfo > cpumem.info

6. [student@stationX ~]$ date > cpumem.info

[student@stationX ~]$ cat /proc/cpuinfo /proc/meminfo >> cpumem.info

7. [student@stationX ~]$ cat cpumem.info | mail -s "System Info for $(hostname) - 2" root@localhost

8. [student@stationX ~]$ (date ; cat /proc/cpuinfo /proc/meminfo) | tee cpumem.info | mail -s "System Stats for `hostname`" root

9. [student@stationX ~]$ date ; cat /proc/cpuinfo /proc/meminfo | tee cpumem.info | mail -s "System Stats for `hostname`" root

date would print to the screen and only cat's output would be piped to tee.

转载于:https://www.cnblogs.com/thlzhf/p/3440660.html

你可能感兴趣的文章
正则表达式-贪婪与懒惰
查看>>
.NET中使用Redis
查看>>
PHP 函数dirname()使用实例
查看>>
jQuery attr方法修改onclick值
查看>>
魔术布局效果-使用本地JSON数据提供数据服务
查看>>
WCF分布式开发必备知识(2):.Net Remoting
查看>>
PHP与MYSQL中UTF8 中文排序例子
查看>>
【多线程】学习11
查看>>
如何在Datatable中取得每列的数据列宽度
查看>>
XML学习笔记
查看>>
任务调度开源框架Quartz动态加入、改动和删除定时任务
查看>>
C#、.NET网络请求总结(WebClient和WebRequest)
查看>>
[再寄小读者之数学篇](2014-11-20 计算二重积分)
查看>>
Material Designer的低版本兼容实现(八)—— Flat Button
查看>>
haha
查看>>
ContentProvider简单介绍
查看>>
基于jQuery的美食时间轴焦点图插件
查看>>
iOS开发-音乐播放
查看>>
用函数SendARP()获取局域网计算机的MAC地址
查看>>
locate 命令(转)
查看>>