如何区分串行文件和 mfs 文件。例如,用户可以创建自己的目录并将文件放在那里,那么在使用命令之前如何区分文件。
谁能告诉我 grep -i 或 grep -e 中的“i”和“e”是什么意思
您如何创建串行或 MFS 文件,我们如何将一个文件转换为另一个文件
问问题
2366 次
1 回答
1
它不是真正的 MFS 文件;这是一个 MFS 目录。为了使用它,您必须首先创建一个:
该
build-mfs
实用程序构建一个多文件系统以供 Ab Initio 环境使用。它在您指定的不同位置创建控制文件和数据分区区域
您不能从串行“转换”到 MFS 或向后。您必须让图表读取 MFS 存储的数据集并收集/合并到串行布局中。
至于 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.)
于 2016-06-01T20:59:50.673 回答