Tagged Questions

The command prompt is the string of text that a command-line interpreter displays to you, the user, to prompt you for input in interactive mode. For programs with textual user interfaces in general, not specifically addressing their prompts for user input, see either the CONSOLE-APPLICATION (Microsoft Windows) or TERMINAL (Unices, MacOS 10, and Linux) tags. See COMMAND-LINE or SuperUser for commands invoked by command lines at a command prompt.

learn more… | top users | synonyms

19
votes
5answers
8k views

xcopy file, rename, suppress “Does xxx specify a file name…” message

This seems pretty simple and maybe I'm just overlooking the proper flag, but how would I, in one command, copy a file from one directory to another and rename it in the destination directory? Here's ...
14
votes
6answers
8k views

Visual Studio Command Prompt vs. Regular Command Prompt?

When I open a command prompt through Visual Studio, I get: Setting environment for using Microsoft Visual Studio 2008 x86 tools. C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE> What ...
11
votes
3answers
4k views

Compiling/Executing a C# Source File in Command Prompt

Pardon my ignorance but how do you compile a .CS file from a command-prompt window? And how do you execute?
9
votes
4answers
24k views

Can I mask an input text in a bat file

I am writing a batch file for execute some other programs. In this case I need to prompt for a password. Do I have any way to mask the input text. I don't need to print *** characters instead of input ...
7
votes
7answers
3k views

How do I tell MSTEST to run all test projects in a Solution?

I need to know how to tell MSTEST to run all test projects in a solution file. This needs to be done from the command line. Right now I have to pass it a specific project file, I'm trying to get it ...
7
votes
1answer
1k views

Why is there a difference between the encoding of the Windows Command Prompt vs. a batch file?

For example, suppose I have a batch file called 'test.cmd' and it simply contains: echo %1 I can call this directly from the command prompt with 'test.cmd some¬arg' and the result is that the ...
7
votes
5answers
21k views

Using the DOS “start” command with parameters passed to the started program

I have a Virtual Machine in Virtual PC 2007. To start it from the desktop, I have the following command in a batch file: "c:\program files\Microsoft Virtual PC\Virtual PC.exe" -pc "MY-PC" -launch ...
6
votes
4answers
99 views

Make shell prompt show current head when in a VCS

When using a VCS, (I use Mercurial and Git in Linux, Bash prompt), is there any way to have the prompt show the current head or tag in the directory? More than once I have shot myself in the foot by ...
6
votes
1answer
184 views

How to get Fabric to automatically (instead of user-interactively) interact with shell commands? Combine with pexpect?

Seeking means to get Fabric to automatically (instead of user-interactively) interact with shell commands (and not just requests for passwords, but also requested user input when no "stdin/interactive ...
6
votes
1answer
171 views

Can I change the prompt in MATLAB?

I never work with the GUI and am always inside a terminal (also full screen, so no title bar) set with the -nodesktop -nodisplay option. I also have different servers that I connect to, to run matlab ...
6
votes
2answers
1k views

Hide Command Window in C# Application

Before you say its a duplicate question, please let me explain (as I've read all similar threads). My application has both of these settings: procStartInfo.CreateNoWindow = true; ...
6
votes
3answers
694 views

interactive window to execute dos commands in visual studio

I know using External Tools options i can run a batch script or a cmd prompt. But here is what i need to do I want to be able to call a dos prompt inside visual studio, which must be interactive. ...
6
votes
3answers
3k views

How to copy files from folder tree dropping all the folders with Robocopy?

I have the following folder structure: FolderA --Folder1 --Folder2 --Folder3 ... --Folder99 Folders 1 through 99 have files in them. All I want to do is to copy ALL THE FILES into ONE FOLDER, ...
5
votes
3answers
5k views

“Could not find the main class” when double-clicking .jar file

First: I realize that this issue should be quite simple and lots of people seem to have experienced it. However, it appears my issue may be slightly different from existing posts. I'm using NetBeans ...
5
votes
1answer
156 views

tools for creating user-friendly command-line prompt?

I notice that some programs (e.g. sqlite, mysql client) provide a command-line prompt that is very similar in capabilities to the bash's, including: line editing with left and right arrows, delete, ...
5
votes
2answers
686 views

Can Ruby access output from shell commands as it appears?

My Ruby script is running a shell command and parsing the output from it. However, it seems the command is first executed and output saved in an array. I would like to be able to access the output ...
4
votes
2answers
75 views

How can I force a .bat file to be launched and run using a .Net command prompt

If you double click on a .bat file, windows will run it in a command prompt. I want a specific .bat file to be launched using the .Net command prompt as it uses gacutil. How can I achieve this? ...
4
votes
2answers
135 views

Git command line - know if in submodule?

Is there any way in git to know if you're in a submodule? You can do thinks like git submodule foreach in the parent directory but I can't seem to come up with a generic way to show that you're in a ...
4
votes
2answers
92 views

Creating a Bash command prompt with a red $ after failure of previous command

I'm new to Bash programming, and I'm working on creating a custom Bash command prompt. My goal is to create a prompt which only shows the login name and host name when they differ from what I normally ...
4
votes
2answers
372 views

Stop MSBuild processing immediately on compilation errors

I have written a batch file, which when executed builds a visual studio solution. The solution comprises of few C# projects. I am using MSBuild utility for this. How can i stop the build from ...
4
votes
3answers
2k views

How can I add the VS Command Prompt to Visual Studio 2010 C# Express?

When I install "real" editions, the command prompt exists as a tool, but not in the express edition? How can I open the special command prompt, and have easier access to the various command-line ...
4
votes
1answer
117 views

Command line Questions in R

I am building an user input interface in R. onload of the program, I would like like to ask the user what their preferences are according to a set of 6 fields. This will then be used as a comparison ...
4
votes
2answers
683 views

Batch Scripting Question - Search and Replace a Variable in a Variable?

I have a problem. I have a batch file which imitates the UNIX cd command. It takes a UNIX-style path inputted by the user, saves it as a var called upath2, converts it to a Windows-style path, and ...
4
votes
4answers
2k views

Problem creating AVD on command prompt in windows XP

I am the beginner for android development. i followed the procedure as specified in developer.google.com . for installing i Tried to crete AVD(Android virtual device) through command path.I executed ...
4
votes
9answers
3k views

What is the native way to create a shortcut (.LNK file) from the Windows XP command line?

EDIT! Sorry to change the question on everyone, but I am really just asking: How do I create a shortcut (.LNK) file from the command line with as little outside help as possible? I really don't ...
3
votes
3answers
80 views

Command prompt hide/remove while taking screen shot

I have the following code to create the screenshot, but the only issue I am facing that it opens the command prompt and make user to close it, can I hide/remove this command prompt? private const int ...
3
votes
2answers
45 views

How to make a OR statement in a batch file?

Hi want to exclude 2 or more files from my batch file. My batch file executes all SQL files in that folder. Here is the code: ECHO %USERNAME% started the batch process at %TIME% >output.txt ...
3
votes
1answer
234 views

Starting external process in QT without command prompt in Windows

I'm try to start an external process in Qt with QProcess.startDetached(). I am able to successfully start the process, however when I do this I see an ugly Windows command prompt pop up. Is there ...
3
votes
6answers
73 views

What would be a good way to collect data from the command prompt in a C# Winforms Application?

This is my first day on StackOverflow as a member, and I have to say I've enjoyed how well the idea behind this website works! Anyway, the question: I am creating a C# Windows Forms Application that ...
3
votes
2answers
112 views

Remove command-prompt in D?

I'm writing an SDL app in D (therefore I'd like to maintain a high amount of platform-independence), and I'm looking for a way to stop the command prompt opening up release builds. How does one do ...
3
votes
2answers
495 views

C# - Process redirected output - Console different to CMD window

I have an application with a Process that use a cmd program. The Process's output is redirect like so: pr.StartInfo.RedirectStandardOutput = true; pr.StartInfo.UseShellExecute = false; ...
3
votes
1answer
194 views

Simple Batch File Turns “é” into a Different Character

I have a batch file with a single line in it: src/Filé.txt When I run the batch file (either in the command prompt or by clicking it in Windows Explorer), I get the following: C:>src\FilΘ.txt ...
3
votes
2answers
479 views

Issues running python scripts in Command Prompt (Specifically with command line arguments)?

I am trying to run my python scripts in the command-prompt without calling python.exe first. I am specifically doing this in relation to running django-admin.py. I have C:\Python26 and ...
3
votes
2answers
66 views

Getting results of perl -w tag into a file

Is it possible to add the -w tag to the first line of a perl program, then run the program from a shell like bash or dos and write all of the warnings into a file? perl somescript.pl > ...
3
votes
3answers
526 views

bash command to repeatedly emulate keypress on a proceess

The nmap tool has such a feature - when you're performing a scan [#nmap -A -T4 localhost] and press "Enter" - it displays kind of status information "Timing: About 6.17% done" Question - how can I ...
3
votes
3answers
621 views

Suppress command window from started command-line application with .NET

I have a module that needs to run a small .Net command-line program to check for updates. Everything is working great, however I am having trouble suppressing the Command Prompt output from being ...
3
votes
3answers
1k views

How do I use colour with Windows command prompt using Python?

I'm trying to patch a waf issue, where the Windows command prompt output isn't coloured when it's supposed to be. I'm trying to figure out how to actually implement this patch, but I'm having trouble ...
3
votes
3answers
542 views

How do I stop a command prompt from appearing in a Win32 C application?

I really have no idea why this is happening... I created a win32 application in emacs, and whenever I make it and run it (not through the command prompt), a command prompt window pops up under the ...
3
votes
4answers
6k views

Modify cmd.exe properties using the command prompt

Isn't that nicely recursive? I've got a portable command prompt on my external drive, and it has a nice .bat file to configure some initial settings, but I'd like more! Here's what I know how to ...
3
votes
5answers
718 views

Adding command recall to a Unix command line application

I'm working on a command line application for Solaris, written in Java6. I'd like to be able to scroll through a history of previous commands using the up and down arrows like many Unix tools allow ...
2
votes
1answer
51 views

edit filename using command prompt

I have a number of files in a folder, by mistaken in some of files I enter the wrong name for example : filename like : abcefxyz.txt while I suppose to enter abcdevwxyz.txt that is I simply want to ...
2
votes
2answers
26 views

Windows find command results to a file

Does anybody know if its possible and if so how to output the results of the windows find command to a text file?
2
votes
1answer
48 views

Getting a gitprompt to run when executing commands

In bash, I'm using a gitprompt to show the current status of my git repository, so my PS0 looks like this: [time][repo name][current path][number of added/modified files]$ This is set in ~/.bashrc ...
2
votes
1answer
158 views

Escaped Double Quote Side Effect in Windows Command Prompt

I have encountered a very odd problem with the Windows command interpreter. It occurs on both XP and Windows 7. My description below applies to a Perl script, but this problem applies to running any ...
2
votes
2answers
88 views

create new visual studio project, add files and run it - command line

is there any way to create a new visual studio project without using IDE, Instead use command prompt?? I am working on a project which will generate small C++ program, so i want to create a new ...
2
votes
3answers
138 views

How to show git status info on the right side of the terminal?

Do you know if it is possible to configure the bash prompt to show the git status / branch info on the right side as zsh can do? This randomly screen shot from the internet shows what I mean.
2
votes
2answers
243 views

Get Command Prompt Output to String

Well, the problem isn't entirely solved. I still have a problem, but I figured out a few problems. My code was pretty much all fine after Dave helped me understand the difference between InputStream ...
2
votes
3answers
208 views

Resize CMD Window

How can I resize the Command Prompt window programmatically in C or C++? For example 80x25 or 80x40 characters. Thank you in advance.
2
votes
0answers
126 views

Calling Script from Command line not working

We created a DLL using cygwin and have written a class based python module for the same. We have created a sample script for the class based python module, that creates an object of the class and ...
2
votes
1answer
334 views

How to force windows cmd tab complete to add a trailing slash to directory names

On the rare occasion that I have to use a windows command prompt rather than bash, it drives me nuts that tab completion doesn't add a slash to the end of directory names. Is there a setting or ...

1 2 3 4 5 7