nixpkgs/nixos/modules/installer/tools
Chuck 84d55716a9 Don't print header on stderr
Automated consumers can use 'sed 1d' or similar to remove this header.

This probably makes this output *easier* to consume correctly.  Having
this header show up in consumers' terminal or log output is probably not
useful, but hiding it without hiding all error messages would have been
more troublesome that just stripping it from stdout.

I.e., previously, unsophisticated use would show undesired output:
  $ some-other-tool
  This attribute set contains:
  This attribute set contains:
  This attribute set contains:
  This attribute set contains:
  <Actual some-other-tool output>

The simplest way to hide this undesired output would have been
nixos-option ... 2>/dev/null, which would hide all error messages.
We do not wish to encourage that.

Correct use would have been something like:
  nixos-option ... 2> >( grep --line-buffered -v 'This attribute set contains:')

After this change, correct use is simpler:
  nixos-option ... | sed 1d
or
  nixos-option ... | sed '1/This attribute set contains:/d'
if the caller don't know if this invocation of nixos-option will yield
an attribute listing or an option description.
2019-11-04 15:11:45 +01:00
..
nixos-build-vms nixos-build-vms: pass --option to nix-build 2019-02-04 10:46:12 +01:00
nixos-option Don't print header on stderr 2019-11-04 15:11:45 +01:00
get-version-suffix Revert adding .git-revision unconditionally 2016-08-09 14:15:06 +02:00
nix-fallback-paths.nix nix: 2.3 -> 2.3.1 2019-10-10 16:23:33 +02:00
nixos-enter.sh nixos-enter: silent activation script option 2019-08-13 23:48:58 +02:00
nixos-generate-config.pl nixos-generate-config: add useDHCP per interface 2019-09-24 11:44:01 +02:00
nixos-install.sh Revert "Merge #67232: machinectl compliant NixOS installation" 2019-10-07 20:56:59 +02:00
nixos-rebuild.sh nixos-rebuild: support sudo + --target-host 2019-10-22 20:44:25 +02:00
nixos-version.sh Revert "Merge pull request #48122 from zimbatm/pkg-nixos-rebuild" 2018-10-16 20:25:44 +02:00
tools.nix nixos/nixos-option: Rewrite in a more suitable language 2019-11-04 15:11:44 +01:00