Skip to content
Snippets Groups Projects
  • Eelco Dolstra's avatar
    128538ef
    nix-shell: Add --run flag · 128538ef
    Eelco Dolstra authored
    ‘--run’ is like ‘--command’, except that it runs the command in a
    non-interactive shell. This is important if you do things like:
    
      $ nix-shell --command make
    
    Hitting Ctrl-C while make is running drops you into the interactive
    Nix shell, which is probably not what you want. So you can now do
    
      $ nix-shell --run make
    
    instead.
    128538ef
    History
    nix-shell: Add --run flag
    Eelco Dolstra authored
    ‘--run’ is like ‘--command’, except that it runs the command in a
    non-interactive shell. This is important if you do things like:
    
      $ nix-shell --command make
    
    Hitting Ctrl-C while make is running drops you into the interactive
    Nix shell, which is probably not what you want. So you can now do
    
      $ nix-shell --run make
    
    instead.