欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

[20181219]script使用小技巧.txt

程序员文章站 2022-06-24 21:02:55
[20181219]script使用小技巧.txt--//前几天在使用strace时遇到问题,它的输出使用标准错误句柄.--//我在想平时使用sqlplus如果输出字段很多,屏幕看起来一片混乱.--//是否可以通过使用script记录操作,通过shell一些命令的功能实现更好的显示.通过例子说明:1 ......

[20181219]script使用小技巧.txt

--//前几天在使用strace时遇到问题,它的输出使用标准错误句柄.
--//我在想平时使用sqlplus如果输出字段很多,屏幕看起来一片混乱.
--//是否可以通过使用script记录操作,通过shell一些命令的功能实现更好的显示.通过例子说明:

1.环境:
--//首先启动scripts,加入-f参数的主要目的是马上输出,避免缓存的影响.
-f  flush output after each write. this is nice for telecooperation: one person does 'mkfifo foo; script -f foo' and
    another can supervise real-time what is being done using 'cat foo'.

2.演示一:
--//session 1:
$ script -f /tmp/a.txt
script started, file is /tmp/a.txt

--//登录数据库会话窗口,设置linesize大一些.
scott@book> set linesize 20000
scott@book> set pagesize 0

--//打开另外的终端窗口,执行:
--//session 2:
$ tail --line=500 -f /tmp/a.txt

--//这样就能看到刚才输入的命令.
--//千万注意不要执行script的会话终端查看/tmp/a.txt,这样会导致/tmp/a.txt迅速增大,相当于一个环.而且自己清楚那个窗口是输入命令,
--//那个是使用tail查看的窗口.
--//session 2:
$ tail --line=500 -f /tmp/a.txt | cut -c1-200

--//回到打开session 1:
scott@book> set numw 12
scott@book> select * from v$database;

--//session 2:
scott@book> select * from v$database;
        dbid name                 created             resetlogs_change# resetlogs_time      prior_resetlogs_change# prior_resetlogs_tim log_mode     checkpoint_change# archive_change# control controlf
------------ -------------------- ------------------- ----------------- ------------------- ----------------------- ------------------- ------------ ------------------ --------------- ------- --------
  1337401710 book                 2018-11-29 11:32:09            925702 2015-11-24 09:11:12                       1 2013-08-24 11:37:30 archivelog          13816048396     13815976887 current 2018-11-

--//controlfile_created字段被截断了,适当调出输出宽度就比较看到了.

3.演示二:
--//演示一仅仅显示前面一段也许不是我需要的信息.可以通过cut过滤输出特定的字段.
--//session 1:
scott@book> set colsep |
--//这样就可以实现显示使用字符"|"分割.假设我现在要显示v$database视图中supp开头的字段.可以进行如下操作.

--//session 2:
$ tail --line=500 -f /tmp/a.txt | grep --binary-files=text supp
--//注意:grep 一定要加入--binary-files=text,因为typescript文件grep把它看成二进制文件,要把它当文本文件对待.
--//回到session 1:
scott@book> @desc v$database
--//切换到session 2,看到如下输出:
   30      supplemental_log_data_min                varchar2(8)
   31      supplemental_log_data_pk                 varchar2(3)
   32      supplemental_log_data_ui                 varchar2(3)
   40      supplemental_log_data_fk                 varchar2(3)
   41      supplemental_log_data_all                varchar2(3)
   51      supplemental_log_data_pl                 varchar2(3)

--//这样可以确定显示字段的位置是30,31,32,41,50.奇怪supplemental_log_data_min长度是8.按ctrl+c退出tail命令,打入如下:
$ tail --line=500 -f /tmp/a.txt | cut -d"|" -f1,2,30,31,32,40,41,51

--//回到session 1,执行如下:
scott@book> select * from v$database;

--//session 2,看到如下:
scott@book> select * from v$database;
        dbid|name                |suppleme|sup|sup|sup|sup|sup
------------|--------------------|--------|---|---|---|---|---
  1337401710|book                |no      |no |no |no |no |no

--//另外有一些版本带有scriptreplay,可以参考链接:http://blog.itpub.net/267265/viewspace-1276764/
--//总之通过shell一些过滤命令显示自己需要的信息.
--//另外退出script后定期清理script的输出文件.