使用tee和grep将某些输出行保存到文件中

时间:2016-06-23 17:06:36

标签: grep tee

我希望看到我的脚本的整个输出,但只保存与“vlim”匹配的行到新文件。我几乎把它搞清楚但却无法按照我想要的方式工作。我目前卡在使用:

之间
python gmakemovie.test movie.cfg.test --overwrite | tee >(grep vlim) /output.txt
grep vlim output.txt > vlim.txt

python gmakemovie.test movie.cfg.test --overwrite | grep vlim | tee  /output.txt

top选项显示我的整个输出,但也将所有输出复制到output.txt。底部选项只复制“vlim”但不显示我的输出的其余部分,所以我无法分辨我在我的脚本中的位置。

为清楚起见,这就是我的输出:

imported pygad v0.4.32+ga1eacb4.dirty
from parameter file (fragmentary):
  snaps:      200 - 200
  width:      1000.0 [kpc]
  pixel:      500 x 500
  x - y:      x - y
  softening:  [  0.2    0.45   2.52  20.     0.2    0.2 ] [ckpc h_0**-1]
====================================================
get orientation from trace file "filepath":
  L:       [ 241.01309204  544.96875    -366.44366455] [1e+10 ckpc h_0**-1      Msol h_0**-1 km s**-1]
get first non-zero center from trace files
  from snapshot 200:
  center:  [ 36821.75390625  35120.65625     33730.06640625] [ckpc h_0**-1]
====================================================
run in serial
====================================================
read snapshot "filepath"
  z = 2.84615386294
  t = 2.33634681236 [Gyr]
get center and orientation from trace file "filepath":
  center:  [ 36821.75390625  35120.65625     33730.06640625] [ckpc h_0**-1]
  R200:    47.4815177362 [kpc]
center snapshot
orientate snapshot
render...
  axis 1: stars...
  im_lum = np.log10(im_lum)
vlim: [-6.59883562 -4.09629962]
  np.ndarray.__idiv__(self, x)
  axis 2: gas...
vlim: [-0.46031536  0.83438775]

我希望输出文件看起来像:

vlim: [-6.59883562 -4.09629962]
vlim: [-0.46031536  0.83438775]

我在Mac上的终端工作

1 个答案:

答案 0 :(得分:4)

最简单的

$ datagenerator | tee outfile-complete | grep 'pattern' >outfile-filtered &
$ less outfile-complete

如果这是一个长时间运行的脚本,这将允许您使用less监控进度(使用F中的less来使其行为像tail -f)而这份工作是作为后台工作的。

修改: 实际上,仔细看看你的第一个命令:

$ datagenerator | tee >( grep 'pattern' ) output

只需进行微小的更改即可实现您的目标:

$ datagenerator | tee >( grep 'pattern' >outfile-filtered ) output-complete

子shell中的grep正在写入标准输出。更改意味着过滤后的数据会转到文件,完整输出会转到控制台并转到output-complete

所以现在你有两个解决方案可以做一些不同的事情。