LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 800|回复: 6

记录控制台的输入输出

[复制链接]
发表于 2005-5-8 23:55:55 | 显示全部楼层 |阅读模式
#script logfile
输入完后ctrl+d结束,logfile里就是你操作的过程。

比如下面这个logfile记录练习sed的过程:
#more logfile
Script started on 2005年05月08日 星期日 23时47分59秒
limon@Gentoo ~/learn $ cat test.txt
The honeysuckle band played all night long for only $90.
It was an evening of splendid music and company.
Too bad the disco floor fell through at 23:00.
The local nurse Miss P.Neave was in attendance.
limon@Gentoo ~/learn $ sed -n '2p' test.txt
It was an evening of splendid music and company.
limon@Gentoo ~/learn $ sed -n '1,3p' test.txt
The honeysuckle band played all night long for only $90.
It was an evening of splendid music and company.
Too bad the disco floor fell through at 23:00.
limon@Gentoo ~/learn $ sed -n '/The/p' test.txt
The honeysuckle band played all night long for only $90.
The local nurse Miss P.Neave was in attendance.
limon@Gentoo ~/learn $ sed -n '4,/The/p' test.txt
The local nurse Miss P.Neave was in attendance.
limon@Gentoo ~/learn $ sed -n '1,$p' test.txt
The honeysuckle band played all night long for only $90.
It was an evening of splendid music and company.
Too bad the disco floor fell through at 23:00.
The local nurse Miss P.Neave was in attendance.
limon@Gentoo ~/learn $ sed -n '/\$/p test.txt
> bash: unexpected EOF while looking for matching `''
bash: syntax error: unexpected end of file
limon@Gentoo ~/learn $ sed -n '/\$/p' test.txt
The honeysuckle band played all night long for only $90.
limon@Gentoo ~/learn $
Script done on 2005年05月08日 星期日 23时49分37秒
:rolleyes:
发表于 2005-5-9 00:17:07 | 显示全部楼层
代码呢?
回复 支持 反对

使用道具 举报

发表于 2005-5-9 08:48:32 | 显示全部楼层
Post by kiron
代码呢?

人家是在说明script这个命令的用法吧.
回复 支持 反对

使用道具 举报

发表于 2005-5-9 09:21:52 | 显示全部楼层
Post by Freebird
人家是在说明script这个命令的用法吧.


:!!
真不好意思,我还没用过这个命令
回复 支持 反对

使用道具 举报

发表于 2005-5-9 11:02:41 | 显示全部楼层
:!!  :!!  :!!
Post by kiron
:!!
真不好意思,我还没用过这个命令
回复 支持 反对

使用道具 举报

发表于 2005-5-20 22:49:12 | 显示全部楼层
你真强!
回复 支持 反对

使用道具 举报

发表于 2005-5-21 09:55:12 | 显示全部楼层
多来就也成强人了.哈哈
回复 支持 反对

使用道具 举报

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

本版积分规则

快速回复 返回顶部 返回列表