Tagged Questions
A command line is a string given to a command interpreter that tells it actions to take, such as running programs. The interpreter processes command lines with escapes and substitutions.
156
votes
105answers
19k views
What is your single most favorite command-line trick using Bash? [closed]
We all know how to use <ctrl>-R to reverse search through history, but did you know you can use <ctrl>-S to forward search if you set stty stop ""? Also, have you ever tried running bind ...
141
votes
27answers
41k views
How to pretty-print JSON script?
Is there a (*nix) command-line script to format JSON in human-readable form?
Basically, I want it to transform the following:
{ foo: "lorem", bar: "ipsum" }
... into something like this:
{
...
106
votes
8answers
92k 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 ...
102
votes
9answers
25k 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 ...
95
votes
14answers
92k 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 ...
93
votes
36answers
5k views
What Linux/Unix commands are outdated and have powerful alternatives? [closed]
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, ...
89
votes
17answers
75k 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 ...
87
votes
5answers
24k 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 ...
81
votes
16answers
29k views
Is there a better Windows “Terminal” application?
I loath working on the command line in Windows, primarily because the terminal application is wretched to use compared to terminal applications on linux and OS X. Major complaints
No standard ...
77
votes
3answers
51k 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 ...
71
votes
7answers
132k 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 ...
67
votes
16answers
28k views
What's a good alternative Windows console?
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 ...
65
votes
4answers
51k 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 ...
65
votes
2answers
31k views
Long commands split over multiple lines in Vista/DOS batch (.bat) file
How do I make long commands go over multiple lines in a Vista/DOS batch file?
63
votes
14answers
15k views
Is there an equivalent of 'which' on windows?
I would like to find the full path to a program in Windows. Is there an equivalent to the UNIX command 'which'? On UNIX, which command prints the full path of the given command.
57
votes
10answers
16k views
Is there a good command line argument parser for Java?
Is there a good options parser framework/library for command-line programs written in Java? E.g. the equivalent of Python's optparse?
53
votes
3answers
46k 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 - ...
52
votes
18answers
65k views
How to test Internet connection speed from command line? [closed]
There's plenty of websites for it, but they're all Flash, not of much use for servers without graphics mode. Any tool I can use to test up/down bandwidth from Linux command line?
50
votes
5answers
18k 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 ...
47
votes
15answers
41k 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 ...
46
votes
14answers
8k 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 ...
45
votes
18answers
99k 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 ...
43
votes
9answers
12k 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 ...
42
votes
10answers
16k views
CMD.exe replacement
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 ...
41
votes
7answers
5k views
Real-time history export amongst Bash terminal windows
Is it possible to share the same Bash history file instance amongst all the terminal windows in real time? I want commands executed in one window to be available to all other terminal windows without ...
40
votes
6answers
17k 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 ...
40
votes
11answers
11k 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 ...
40
votes
10answers
86k 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 ...
40
votes
8answers
29k views
'lsof' equivalent for windows
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 ...
38
votes
8answers
26k 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 ...
38
votes
9answers
33k 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?
35
votes
16answers
4k views
What are good Linux/Unix books for an advancing user?
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 ...
35
votes
14answers
71k 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 ...
32
votes
17answers
4k 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 ...
32
votes
6answers
2k views
What does the number in brackets shown after unix command names mean?
E.g man(1), find(3), updatedb(2) ?
what do these numbers mean ?
31
votes
7answers
4k views
Wanted: Command line HTML5 beautifier [closed]
Wanted
A command line HTML5 beautifier running under Linux.
Input
Garbled, ugly HTML5 code. Possibly the result of multiple templates. You don't love it, it doesn't love you.
Output
Pure beauty. ...
31
votes
13answers
2k views
Why is argc an 'int' (rather than an 'unsigned int')?
Why is the command line arguments count variable (traditionally "argc") an 'int' instead of an 'unsigned int'? Is there a technical reason for this?
I've always just ignored it when trying rid of all ...
31
votes
2answers
6k 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 ...
30
votes
6answers
40k 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 ...
29
votes
4answers
17k views
Windows recursive grep command-line
I need to do a recursive grep in Windows, something like this in Unix/Linux:
grep -i 'string' `find . -print`
or the more-preferred method:
find . -print | xargs grep -i 'string'
I'm stuck with ...
28
votes
7answers
7k views
Scala: Best way to parse command-line parameters (CLI)?
What's the best way to parse command-line parameters in Scala?
I personally prefer something lightweight that does not require external jar.
Related:
Java library for parsing command-line ...
27
votes
11answers
15k 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 ...
27
votes
50answers
3k views
Favourite command line trick [closed]
bash, bat, whatever...
What is your favourite command line hyperproductivity trick?
26
votes
3answers
4k 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 ...
26
votes
4answers
25k 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.
26
votes
10answers
21k 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].
26
votes
6answers
47k 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?
26
votes
11answers
63k 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)?
26
votes
6answers
4k 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 ...
25
votes
8answers
13k views
Peak memory usage of a linux/unix process
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