Unix MFS 和串行文件

Unix MFS and Serial File

  1. 如何区分序列文件和mfs文件。 例如,用户可以创建自己的目录并将文件放在那里, 那么在使用命令之前如何区分文件。

  2. 谁能告诉我在 grep -i 或 grep -e

  3. 中 'i' 和 'e' 是什么意思
  4. 如何创建序列文件或 MFS 文件以及我们如何将一个文件转换为另一个文件

这不是真正的 MFS 文件;这是一个 MFS 目录。为了使用它,你必须先创建一个:

The build-mfs utility builds a multifile system for use by an Ab Initio Environment. It creates the control files and the data partition areas in separate locations that you specify

您不能 "convert" 从串行到 MFS 或向后。您必须让图表读取 MFS 存储的数据集并 gather/merge 进入串行布局。

至于grep,做man grep(或grep --help):

-e PATTERN, --regexp=PATTERN
              Use  PATTERN as the pattern.  This can be used to specify multiple search patterns, or to protect a pattern beginning with a hyphen (-).  (-e is
              specified by POSIX.)
-i, --ignore-case
              Ignore case distinctions in both the PATTERN and the input files.  (-i is specified by POSIX.)