Project

General

Profile

Actions

Bug #8550

closed

On Windows Process.spawn 'command', 'arg1', 'arg2', ... evals the arguments

Bug #8550: On Windows Process.spawn 'command', 'arg1', 'arg2', ... evals the arguments

Added by mdesantis (Maurizio De Santis) over 12 years ago. Updated about 12 years ago.

Status:
Closed
Assignee:
-
Target version:
-
ruby -v:
ruby 2.0.0p195 (2013-05-14) [x64-mingw32]
[ruby-core:55572]

Description

=begin
Environment: ruby 2.0.0p195 (2013-05-14) [x64-mingw32] (RubyInstaller with DevKit) on Windows 7 64bit

According to the Process.spawn documentation, the syntax 'cmdname, arg1, ...' doesn't involve the shell. Indeed, on Unix this is true: ((%Process.spawn 'echo', '$PATH'%)) prints '$PATH'.

But on Windows the behaviour is different: executing ((%Process.spawn 'echo', '%Path%'%)) prints the contents of the Path environment variable.

I think the behaviour should be the same on the different OSes; at least, if it is not possible, the documentation should point it out.
=end


Files

Updated by luislavena (Luis Lavena) over 12 years ago Actions #1 [ruby-core:55573]

Hello,

On Windows, 'echo' is not an external command, is part of cmd.exe internal commands, like cd and others.

Updated by nobu (Nobuyoshi Nakada) over 12 years ago Actions #2 [ruby-core:55586]

  • Category set to doc

This is a spec.
Otherwise you have to write system(ENV["COMSPEC"], "/c", "echo foo"), and it seems too messy.

Patches for the rdoc are welcome.

Updated by zzak (zzak _) about 12 years ago Actions #4

  • Status changed from Open to Closed
  • % Done changed from 0 to 100

This issue was solved with changeset r42391.
Maurizio, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.


  • process.c: [DOC] Document caveats of command form of Process.spawn
    with regard to the shell and OS. Patched by Steve Klabnik [Bug #8550]
Actions

Also available in: PDF Atom