bash 中 gnu_errfmt 选项的用法

bash 中 gnu_errfmt 选项的用法

我读了GNU/Bash 文档但我无法理解或找到任何现实世界的使用示例。

gnu_errfmt

如果设置,shell 错误消息将以标准 GNU 错误消息格式写入。

当我尝试时:

└─$ shopt -u gnu_errfmt
└─$ no_command
-bash: no_command: command not found
└─$ shopt -s gnu_errfmt
└─$ no_command
-bash: no_command: command not found

请给我真正的使用目的和例子。

相关内容