2009-02-05 32 views
145

Puedo entender cmd pero no cmd /c. Intenté invocar un programa de Java de la corriente para la que uso Runtime.getRuntime().exec("cmd /C java helloworld"); Surge mi duda.¿Qué significa cmd/C?

Respuesta

85

/C Realiza el comando especificado por la cadena y luego finaliza.

Puede obtener todos los conmutadores de línea de comando cmd escribiendo cmd /?.

17
CMD.exe 

Start a new CMD shell 

Syntax 
     CMD [charset] [options] [My_Command] 

Options  

**/C  Carries out My_Command and then 
terminates** 

De la ayuda.

184

La parte que le puede interesar es la parte /?, que debería resolver la mayoría de las otras preguntas que tenga con la herramienta.

 
Microsoft Windows XP [Version 5.1.2600] 
(C) Copyright 1985-2001 Microsoft Corp. 

C:\>cmd /? 
Starts a new instance of the Windows XP command interpreter 

CMD [/A | /U] [/Q] [/D] [/E:ON | /E:OFF] [/F:ON | /F:OFF] [/V:ON | /V:OFF] 
    [[/S] [/C | /K] string] 

/C  Carries out the command specified by string and then terminates 
/K  Carries out the command specified by string but remains 
/S  Modifies the treatment of string after /C or /K (see below) 
/Q  Turns echo off 
/D  Disable execution of AutoRun commands from registry (see below) 
/A  Causes the output of internal commands to a pipe or file to be ANSI 
/U  Causes the output of internal commands to a pipe or file to be 
     Unicode 
/T:fg Sets the foreground/background colors (see COLOR /? for more info) 
/E:ON Enable command extensions (see below) 
/E:OFF Disable command extensions (see below) 
/F:ON Enable file and directory name completion characters (see below) 
/F:OFF Disable file and directory name completion characters (see below) 
/V:ON Enable delayed environment variable expansion using ! as the 
     delimiter. For example, /V:ON would allow !var! to expand the 
     variable var at execution time. The var syntax expands variables 
     at input time, which is quite a different thing when inside of a FOR 
     loop. 
/V:OFF Disable delayed environment expansion. 
+5

también hay una orden de "pausa" la ventana cmd después de la salida: "nombre_archivo cmd/c y pausa" es poco diferente de cmd/k – JerryGoyal

+0

lo que si hay una orden dada es una especie de servidor que se inicia Es propio bucle? ¿Deberíamos usar/C o/K? –

+0

Mientras se ejecuta el comando en C# a través de 'Proceso', ¿se usa/C obligatorio en el sistema operativo Windows 7 o Windows Server 2008 R2? –