A command line is a string given to a command interpreter that tells it actions to take, such as running programs or copying files. The interpreter processes command lines with escapes and substitutions.

learn more… | top users | synonyms (1)

165
votes
9answers
159k views

How To: Execute command line in C#, get STD OUT results

How do I execute a command-line program from C# and get back the STD OUT results. Specifically, I want to execute DIFF on two files that are programmatically selected and write the results to a text ...
231
votes
16answers
198k views

Setting multiple jars in java classpath

Is there a way to include all the jar files within a directory in the classpath? I'm trying java -classpath lib/*.jar:. my.package.Program and it is not able to find class files that are certainly in ...
39
votes
5answers
39k views

Unicode characters in Windows command line - how?

We have a project in TFS that has a non-English character (š) in it. When trying to script a few build-related things we've stumbled upon a problem - we can't pass the š letter to the command line ...
77
votes
5answers
62k views

What encoding/code page is cmd.exe using

When I open cmd.exe in Windows, what encoding is it using? How can I check which encoding it is currently using? Does it depend on my regional setting or are there any environment variables to check? ...
182
votes
10answers
62k views

Xcode “Build and Archive” from command line

Xcode 3.2 provides an awesome new feature under the Build menu, "Build and Archive" which generates an .ipa file suitable for Ad Hoc distribution. You can also open the Organizer, go to "Archived ...
270
votes
12answers
51k views

Is there an equivalent of 'which' on windows? [closed]

As I sometimes have path problems, where one of my own cmd scripts is hidden (shadowed) by another program (earlier on the path), I would like to be able to find the full path to a program in Windows, ...
144
votes
13answers
56k views

Is there a good command line argument parser for Java? [closed]

Is there a good options parser framework/library for command-line programs written in Java? E.g. the equivalent of Python's optparse?
98
votes
16answers
170k views

How can you find and replace text in a file using the Windows command-line environment?

I am writing a batch file script using Windows command-line environment and want to change each occurrence of some text in a file (ex. "FOO") with another (ex. "BAR"). What is the simplest way to do ...
120
votes
18answers
235k views

How to get current datetime on Windows command line, in a suitable format for using in a filename?

What's a Windows command line statement(s) I can use to get the current datetime in a format that I can put into a filename? I want to have a .bat file that zips up a directory into an archive with ...
71
votes
13answers
29k views

SVN: Is there a way to mark a file as “do not commit”?

With TortoiseSVN, I can move a file into the ignore-on-commit changelist, so that when I commit a whole tree, changes to that file do not get committed. Is there a way to do something like that using ...
161
votes
4answers
115k views

How do I get the application exit code from a Windows command line?

I am running a program and want to see what its return code is (since it returns different codes based on different errors). I know in Bash I can do this by running echo $? What do I do when ...
41
votes
5answers
4k views

What is the canonical way to determine commandline vs. http execution of a PHP script?

I have a PHP script that needs to determine if it's been executed via the command-line or via HTTP, primarily for output-formatting purposes. What's the canonical way of doing this? I had thought it ...
91
votes
13answers
85k views

Command Line Arguments In Python

I am originally a C programmer. I have seen numerous tricks and "hacks" to read many different arguments. What are some of the ways Python programmers can do this? Related What’s the best way to ...
158
votes
4answers
108k views

How to iterate over arguments in bash script

I have a complex command that I'd like to make a shell/bash script of. I can write it in terms of $1 easily: foo $1 args -o $1.ext I want to be able to pass multiple input names into the script - ...
64
votes
7answers
45k views

Build Eclipse Java Project from Command Line

Is there a way to compile an Eclipse-based Java project from the command line? I'm trying to automate my build (using FinalBuilder not ant), and I'm neither a Java nor Eclipse expert. I can probably ...
473
votes
29answers
122k views

How to pretty-print JSON from the command line?

Is there a (unix) shell script to format JSON in human-readable form? Basically, I want it to transform the following: { foo: "lorem", bar: "ipsum" } ... into something like this: { foo: ...
275
votes
7answers
62k views

How do I pass command line arguments to a rake task?

I've got a rake task that I am making that needs to insert a value into multiple databases. I'd like to be able to pass this value into the rake task from the command line, or from another rake ...
106
votes
19answers
89k views

Windows version of the Unix touch command

I'm looking for a Windows port of the UNIX touch command. I don't want to install an entire MKS toolkit just for the one tool. Is there a native port available somewhere or a command in Windows that ...
141
votes
3answers
93k views

Debugging with command-line parameters in Visual Studio

I'm developing a C++ command-line application in Visual Studio and need to debug it with command-line arguments. At the moment I just run the generated EXE file with the arguments I need (like this ...
40
votes
4answers
83k views

Adobe Reader Command Line Reference

Is there any official command line (switches) reference for the different versions of Adobe (formerly Acrobat) Reader? I didn't find anything on www.adobe.com/devnet/, ... Especially I want to ...
6
votes
2answers
893 views

How can I hide the console window in a PyQt app running on Windows?

Surely this is possible? I have been hunting through PyQt tutorials and documentation but cannot find the answer to it. Probably I just need to phrase my search query differently. [Edit] Thanks PEZ ...
76
votes
11answers
43k views

Timeout a command in bash without unnecessary delay

This answer to a similar question proposes a 1-line method to timeout a long-running command from the bash command line: ( /path/to/slow command with options ) & sleep 5 ; kill $! But it's ...
76
votes
10answers
153k views

How to check if a process is running via a batch script

How can I check if an application is running from a batch (well cmd) file? I need to not launch another instance if a program is already running. (I can't change the app to make it single instance ...
42
votes
7answers
13k views

Java library for parsing command-line parameters?

I write a little command-line-application in Java. This application should work with a mix of parameters and commands, a little bit similar to the 'svn'-command. Examples: app url command1 app url ...
24
votes
2answers
20k views

Want to invoke a linux shell command from Java

I am trying to exec some linux commands from Java code. Actualy the code that I use is useing redirection (>&) and pipe simbols (|). How my Java code should be to be able to invoke that command as ...
185
votes
17answers
69k views

Is there a better Windows Console Window? [closed]

I find working on the command line in Windows frustrating, primarily because the console window is wretched to use compared to terminal applications on linux and OS X such as "rxvt", "xterm", or ...
167
votes
8answers
291k views

How to Pass Command Line Parameters in Batch File

I needed to pass id and password to a cmd (or bat) file at the time of running rather than hardcoding them into the file. Here's how I do it. @echo off fake-command /u %1 /p %2 Here's what the ...
20
votes
4answers
6k views

Argument-parsing helpers for C/UNIX

I know of the following: the venerable getopt(3) the extended getopt_long glibc's argp parser for unix-style argument vectors popt from the GNOME project (or its spiritual successor in Glib) I'm ...
76
votes
10answers
24k views

Grep and Sed Equivalent for XML Command Line Processing

When doing shell scripting, typically data will be in files of single line records like csv. It's really simple to handle this data with grep and sed. But I have to deal with XML often, so I'd really ...
53
votes
5answers
49k views

How do I launch the Android emulator from the command line?

I'm on Mac, working on Android development from the terminal. I have successfully created the HelloWorld project and now I'm trying to run it from the command line in the Android emulator. Which ...
52
votes
2answers
11k views

WPF Command Line

I am trying to create a WPF application that takes command line arguments. If no arguments are given, the main window should pop up. In cases of some specific command line arguments, code should be ...
33
votes
16answers
55k views

How to use sed to replace only the first occurrence in a file?

I want to update a large number of C++ source files with an extra include directive before any existing #includes. For this sort of task I normally use a small bash script with sed to re-write the ...
42
votes
5answers
33k views

How to run Junit testcases from command line?

I would like to run junit test cases from commandline. Im using eclipse
62
votes
13answers
14k views

Looking for a Command Line Argument Parser for .NET [closed]

I'm looking for a command line argument parser, such as "Command line parser" from http://www.sellsbrothers.com/tools/Genghis/ . Features I'm looking for: Auto-generation of usage Should able to ...
65
votes
7answers
26k views

How can I read command line parameters from an R script?

I've got a R script for which I'd like to be able to supply several command-line parameters (rather than hardcode parameter values in the code itself). The script runs on Windows. I can't find info ...
66
votes
4answers
46k views

How do I parse command line arguments in bash?

Say I have a script that gets called with this line: ./myscript -vfd ./foo/bar/someFile -o /fizz/someOtherFile or this one: ./myscript -v -f -d -o /fizz/someOtherFile ./foo/bar/someFile What's ...
52
votes
10answers
45k views

How can I determine whether a specific file is open in Windows? [closed]

One of my favourite tools for linux is lsof - a real swiss army knife! Today I found myself wondering which programs on a WinXP system had a specific file open. Is there any equivalent utility to ...
37
votes
3answers
38k views

How do I compile a Visual Studio project from the command-line?

I'm scripting the checkout, build, distribution, test, and commit cycle for a large C++ solution that is using Monotone, CMake, Visual Studio Express 2008, and custom tests. All of the other parts ...
33
votes
13answers
26k views

Split string containing command-line parameters into string[] in C#

I have a single string that contains the command-line parameters to be passed to another executable and I need to extract the string[] containing the individual parameters in the same way that C# ...
29
votes
4answers
90k views

Java: problem running a jar file in command line

I'm trying to call a class (main method) from command line (Windows) with Java. The class imports other classes (other jars). I always get "class not found exception" from a class that my main ...
25
votes
4answers
16k views

How can I “intercept” Ctrl+C in a CLI application?

How can I intercept Ctrl+C (which normally would kill the process) in a CLI (command line interface) Java application? Does a multi-platform solution exist (Linux, Solaris, Windows)? I'm using ...
32
votes
8answers
76k views

How can I pass command-line arguments to a Perl program?

I'm working on a Perl script. How can I pass command line parameters to it? Example: script.pl "string1" "string2"
32
votes
6answers
28k views

How can I search for a multiline pattern in a file ? Use pcregrep

I needed to find all the files that contained a specific string pattern. The first solution that comes to mind is using find piped with xargs grep: find . -iname '*.py' | xargs grep -e 'YOUR_PATTERN' ...
5
votes
4answers
14k views

How do I send ctrl+c to a process in c#?

I'm writing a wrapper class for a command line executable. This exe accepts input from stdin until i hit ctrl+c in the command prompt shell, in which case it prints output based on the input to ...
42
votes
16answers
8k views

What are good Linux/Unix books for an advancing user? [closed]

Are there any good books for a relatively new but not totally new *nix user to get a bit more in depth knowledge (so no "Linux for dummies")? For the most part, I'm not looking for something to read ...
51
votes
11answers
79k views

How do I send a file as an email attachment using Linux command line?

I've created a script that runs every night on my Linux server that uses mysqldump to back up each of my MySQL databases to .sql files and packages them together as a compressed .tar file. The next ...
42
votes
8answers
9k views

How to animate the command line?

I have always wondered how people update a previous line in a command line. a great example of this is when using the wget command in linux. It creates an ASCII loading bar of sorts that looks like ...
34
votes
10answers
13k views

Running a Zend Framework action from command line

I would like to run a Zend Framework action to generate some files, from command line. Is this possible and how much change would I need to make to my existing Web project that is using ZF? Thanks!
34
votes
5answers
40k views

Execute PowerShell Script from C# with Commandline Arguments

I need to execute a PowerShell script from within C#. The script needs commandline arguments. This is what I have done so far: RunspaceConfiguration runspaceConfiguration = ...
60
votes
19answers
25k views

bash - automatically capture output of last executed command into a variable

I'd like to be able to use the result of the last executed command in a subsequent command. For example, $ find . -name foo.txt ./home/user/some/directory/foo.txt Now let's say I want to be able to ...

1 2 3 4 5 20