62
votes
87answers
8k views
What is your single most favorite command-line trick using Bash?
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 …
54
votes
33answers
3k 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, …
22
votes
13answers
927 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 …
22
votes
9answers
5k views
Best way to parse command line arguments in C#
When building console applications that take parameters, you can use the arguments passed to Main(string[] args). In the past I've simply indexed/looped that array and done a few regular expressions …
18
votes
10answers
3k 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 …
18
votes
19answers
1k views
Tracking down where disk space has gone on Linux?
When administering Linux systems I often find myself struggling to track down the culprit after a partition goes full. I normally use
du / | sort -nr
but on a large filesystem this takes a long …
17
votes
13answers
1k 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 …
16
votes
13answers
2k views
How do you use PowerShell?
Windows PowerShell came out last year and got great reviews from many .net bloggers (Hanselman comes to mind). It seemed to be touted as a great new utility that somehow made everything that you would …
14
votes
3answers
270 views
Minimal, good-citizen, C# console application boilerplate
What would be the minimal boilerplate code for a C# console application entry-point that would make it a well-behaved citizen?
When anyone goes out to create a Console Application project using …
14
votes
22answers
1k views
Most powerful examples of Unix commands or scripts every programmer should know
There are many things that all programmers should know, but I am particularly interested in the Unix/Linux commands that we should all know. For accomplishing tasks that we may come up against at some …
14
votes
6answers
1k 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?
14
votes
9answers
1k views
What’s the best way to grab/parse command line arguments passed to a Python script?
The title says it all...what's the easiest, tersest, and most flexible method or library for parsing Python command line arguments?
14
votes
9answers
1k 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 …
13
votes
11answers
9k 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 …
13
votes
13answers
1k views
What is the design pattern for processing command line arguments
If you are writing a program that is executable from the command line, you often want to offer the user several options or flags, along with possibly more than one argument. I have stumbled my way …
