sed stdin 行为

sed stdin 行为

使用 sed 对数据进行直接标准输入处理,我希望在进入。这就是我在 CygWin 或 Linux 上测试但在 AIX 上测试时发生的情况新队需要对线路进行处理。我尝试使用该-u标志来避免缓冲区延迟而不修改行为。是否有选项或参数可以让 POSIX AIXsed像在其他操作系统上一样工作?

例子:

> sed -u '=;l;s/foo/bar/'
like my foo            (enter)
but not the lazy dog   (enter)
1                      (stdout)
like my foo$           (stdout)
like my bar            (stdout)

相关内容