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.
476
votes
30answers
123k 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: ...
276
votes
7answers
63k 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 ...
276
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, ...
234
votes
16answers
199k 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 ...
205
votes
19answers
146k views
grep --exclude/--include syntax (do not grep through certain files)
I'm looking for the string "foo=" (without quotes) in text files in a directory tree. It's on a common Linux machine, I have bash shell:
grep -ircl "foo=" *
In the directories are also many binary ...
187
votes
17answers
70k 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 ...
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 ...
169
votes
8answers
293k 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 ...
168
votes
9answers
160k 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 ...
164
votes
17answers
79k views
What's a good alternative Windows console? [closed]
UPDATE (solution)
Months later someone turned me on to an awesome solution to this. If you install Git for Windows, it comes with this console app called Git Bash that does exactly what I descibed. I ...
162
votes
4answers
116k 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 ...
159
votes
4answers
109k 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 - ...
144
votes
13answers
57k 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?
144
votes
3answers
94k 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 ...
136
votes
10answers
142k views
How can I list files with their absolute path in linux? [closed]
I want to generate recursive file listings with full paths
/home/ken/foo/bar
but as far as I can see both ls and find only give relative path listings
./foo/bar (from the folder ken)
It seems ...
122
votes
7answers
39k views
How to run mvim (MacVim) from Terminal?
I have MacVim installed and I am trying to set it up as the editor for Git (version control), but I can't run 'mvim' from the command line as it isn't recognised. How do I setup mvim so I can run it ...
120
votes
18answers
236k 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 ...
117
votes
37answers
7k views
What Linux/Unix commands are outdated and have powerful alternatives?
Today I discovered you can make less act like tail -f.
less filename, then press Shift-F to start follow mode.
Just like tail, but you have all the added features of less - like scrolling, ...
113
votes
30answers
69k views
The connection to adb is down, and a severe error has occured
I've spent days trying to launch any Android program. Even "Hello World" gives me the same error: "The connection to adb is down, and a severe error has occured".
I'm running Eclipse Galileo, Google ...
109
votes
9answers
131k views
Checkout a specific revision from subversion from command line
I would like to checkout a specific revision of a folder in subversion using the command line but don't see an option for specifying the revision number in TortoiseProc.exe.
TortoiseProc.exe ...
106
votes
19answers
90k 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 ...
103
votes
2answers
76k views
List all environment variables from command line?
I'd like to know if it's possible from windows command line to list ALL environment variables.
Something equivalent to powershell gci env: (or ls env: or dir env:).
Thanks in advance.
98
votes
16answers
171k 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 ...
96
votes
8answers
85k views
List of Stored Procedures/Functions Mysql Command Line
Dear all how can I see the list of the stored procedures or stored functions in mysql command line like show tables; or show databases; commands.
92
votes
9answers
26k views
How can I reverse the order of lines in a file?
I'd like to reverse the order of lines in a text file (or stdin), preserving the contents of each line.
So, i.e., starting with:
foo
bar
baz
I'd like to end up with
baz
bar
foo
Is there a ...
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 ...
85
votes
8answers
42k 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 ...
84
votes
9answers
66k views
How do I remove the file suffix and path portion from a path string in Bash?
Given a string file path such as "/foo/fizzbuzz.bar", how would I use bash to extract just the "fizzbuzz" portion of said string?
78
votes
3answers
45k views
How do I drop a MongoDB database, from the command line?
What's the easiest way to do this from my bash prompt?
78
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?
...
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
154k 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 ...
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 ...
74
votes
10answers
32k views
CMD.exe replacement [closed]
Does anyone know of a good Command Prompt replacement? I've tried bash/Cygwin, but that does not really meet my needs at work because it's too heavy. I'd like a function-for-function identical ...
72
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 ...
71
votes
13answers
49k views
How do I get the name of the current executable in C#?
I want to get the name of the currently running program, that is the executable name of the program. In C/C++ you get it from args[0].
71
votes
6answers
5k views
What does the number in brackets shown after unix command names mean? [closed]
E.g man(1), find(3), updatedb(2) ?
what do these numbers mean ?
68
votes
10answers
155k views
Stop and Start a service via batch or cmd file?
How can I script a bat or cmd to stop and start a service reliably with error checking (or let me know that it wasn't successful for whatever reason)?
66
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 ...
64
votes
4answers
12k views
Why use argparse rather than optparse?
I noticed that the Python 2.7 documentation includes yet another command-line parsing module. In addition to getopt and optparse we now have argparse.
Why has yet another command-line parsing module ...
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 ...
63
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 ...
62
votes
3answers
67k views
send/post xml file using curl command line
How can I send/post an xml file to a local server http://localhost:8080 using curl from the command line? what command should I give?
61
votes
7answers
124k views
How to create empty text file from a batch file?
Can somebody remember what was the command to create an empty file in MSDOS using BAT file?
60
votes
11answers
123k views
How do you list all processes on the command line in Windows?
Is there a command equivalent to 'ps' on Unix that can list all processes on a Windows machine?
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 ...
60
votes
10answers
36k views
Peak memory usage of a linux/unix process [closed]
Is there a tool that will run a command-line and report how much RAM was used total?
I'm imagining something analogous to /usr/bin/time
59
votes
13answers
86k views
How do you recursively ftp a folder in linux
I'm trying to ftp a folder using the command line ftp client, but so far I've only been able to use 'get' to get individual files.
58
votes
17answers
170k views
How to sleep for 5 seconds in Windows's Command Prompt? (or DOS)
Windows's Snipping tool can capture the screen, but sometimes I want to capture the screen after 5 seconds, such as taking an image being displayed by the webcam. (run the script and smile at the ...