vote up 10 vote down star
20

bash, bat, whatever...

What is your favourite command line hyperproductivity trick?

flag
show 2 more comments

41 Answers

1 2 next
vote up 31 vote down check

Entering

START .

to open a Windows Explorer window for the current directory.

link|flag
2  
How ironic that the best Windows command line trick is a way to escape the command line??! – chillitom Aug 27 at 11:00
show 16 more comments
vote up 11 vote down

Running grep over directories with code, often with find (and sometimes xargs when needed). For me this is typically faster than using the equivalent tools in an IDE, although I guess that mostly shows my age.

link|flag
1  
betterthangrep.com – Martin Carpenter Mar 9 at 10:20
1  
@Martin: +1: ack is the best command-line code-searching tool ... – Joachim Sauer Mar 9 at 12:57
show 4 more comments
vote up 20 vote down

Ctrl-R in bash to search for a previously entered command.

link|flag
vote up 0 vote down

I like my bash prompt to be a different colour. In your .bashrc or .profile:

PS1='\033[01;34m\n[\u@\H \W]$\033[00m '
link|flag
vote up 4 vote down

Pipes in general. Imagine you want to find out how many files that have a particular string in their filename are in a folder. You could do it like this:

ls -l | grep yourstring | wc -l
# Sample output: 52
link|flag
show 4 more comments
vote up 0 vote down

scripts and IF.

link|flag
vote up 11 vote down

Favourite command line hyperproductivity trick:

I like the Tab key for path/file completion in bash.


Favourite command line tool:

man [command]
link|flag
show 1 more comment
vote up 1 vote down

Piping the output of grep (or findstr) to itself to exclude things I don't want. For example:

findstr /spin /c:"foo" *.cc | findstr /v /c:".svn"
link|flag
vote up 5 vote down

Turning on tab completion in a Windows command shell.

set \HKCU\Software\Microsoft\Command Processor\CompletionChar to 9

After that use tab to auto-complete filenames in shells.

I think Vista has this turned on by default but XP doesn't

link|flag
show 3 more comments
vote up 2 vote down

At the Mac OS X bash prompt issuing

open Filename

starts up the application associated with Filename and loads the file.

link|flag
1  
Windows equivalent: start Filename Unix equivalent: xdg-open Filename – Jörg W Mittag Mar 9 at 11:05
show 2 more comments
vote up 17 vote down

I think you are looking for the Command-line Fu Website! :)

link|flag
show 2 more comments
vote up 0 vote down

In tcsh, using CTRL-X+? to expand paths and aliases, CTRL-X+$ to expand variables and CTRL-X+* to expand globs.

Some examples:

> alias l less
> l
# press CTRL-X+?
> less
> set l less
> $l
# press CTRL-X+$
> less
> ls
a.c b.c c.h
> echo *.c
# press CTRL-X+*
> echo a.c b.c
link|flag
vote up 3 vote down

In bash:

set -o vi

turns on vi mode. Also, adding this to ~/.inputrc will turn on vi mode for anything using readline:

set editing-mode vi
set keymap vi

I am more familiar with the vi commands than I am with the emacs ones, so these changes give me a productivity boost.

link|flag
vote up 6 vote down

In bash... key combo alt-.

the most useful key combination ever, try it and see, for some reason no one knows about this one.

press it again and again to select older last parameters.

great when you want to do something else to something you used just a moment ago.

link|flag
1  
Can you give an example? I am unable to use it correctly. – Masi Apr 18 at 18:48
show 3 more comments
vote up 0 vote down

When trying to find if a specific program is running: ps options | grep [p]rogram

That is, turning the program name into a non-self-matching regular expression.

link|flag
show 3 more comments
vote up 3 vote down

Creating a m3u file from command:

dir /B *.mp3 > playlist.m3u
link|flag
vote up 13 vote down

On Windows:

TaskList /M nameof.dll

Gives you a list of all the running processes that have the DLL loaded. This is useful if you're trying to track down a locking issue.

link|flag
show 1 more comment
vote up 2 vote down

Here's a way to show any file in Windows Explorer (open window and highlight file; at least, if the file's directory window is not already open):

explorer /select,"c:\windows\notepad.exe"

Or, if you like "explore" (show file tree) better:

explorer /E,/select,"c:\windows\notepad.exe"

(I'm just taking notepad as an example, as that path probably exists on your PC.)

Note that Explorer will crash if the path does not exist.

link|flag
vote up 0 vote down

bash-completion: the greatest things since bash completion

This gives you relevant completion suggestions for what you've currently typed. Extremely useful!

link|flag
vote up 3 vote down

On Windows:

explorer /e,/root, path

Will launch an explorer instance with the root set to path. This is handy when you're browsing source code and just want an explorer view from the root of the code down.

NOTE: The strange commas are correct and there needs to be a space after the last comma and before the path.

link|flag
vote up 3 vote down

I use alt-f/b in bash to jump over words along with ctrl-a/e to navigate to the end/beginning of the line. Ctrl-u deletes everything left from the cursor, ctrl-k everything right from the cursor.

On Windows you can use ctrl-left/right. Home/End, however I haven't found a shortcut to delete everything left/right from the cursor.

link|flag
vote up 4 vote down

In Bash, the ! keyword thingummy.

e.g.

!ssh

runs the latest entry from your command line history that began with 'ssh'.

or

!224

reruns entry #224 from your history.

Useful when you have to run the same command several times, for example, running ssh with loads of command-line options specified.

link|flag
1  
Personally, I hate this, and use "set +H" to disable it. With EMACS key bindings, just use Ctrl-R followed by the pattern (here, "ssh") to see (and maybe edit) the command line BEFORE it runs! – NVRAM Mar 10 at 20:42
1  
Watch out if you're root. More than once I've run !find in order to repeat the last find command, having forgotten that it expanded out to "find . -size +1000000c | xargs -t rm -f". While benign in the originally intended directory, it wrecked havoc when I accidentally ran it in /var. – Barry Brown Mar 15 at 7:21
show 1 more comment
vote up 9 vote down

From a Windows XP command prompt, might be a known feature but I use it all the time. hitting the F7 key will bring up the list of previously issued commands.

link|flag
show 1 more comment
vote up 0 vote down

in bash, for loops. I particularly like the structure:

for f in *; do cd $f; for g in *; do [STUFF]; done; cd ..; done
link|flag
show 7 more comments
vote up -1 vote down

in unix/sh, Using find in conjunction with while read in order to perform a common operation on certain files within a directory tree.

Change permissions of directories only:

find ./ -type d |while read x; do chmod go+rx "$x"; done

Remove files not accessed in more than a week:

find ./ -type f -atime +7| while readx; do rm "$x"; done

The find command allows one to ferret out those files with common characteristics, and the while read construct makes makes it simple to perform operations on each.

link|flag
show 2 more comments
vote up 10 vote down

How to paste on windows console: alt+space+e+p

I know it's huge and complex but it saves me 50 times per day.

link|flag
1  
thanks benPearce. Sometimes I prefer not to touch the mouse though. – cherouvim Mar 18 at 22:11
show 2 more comments
vote up 3 vote down
% perl -ne "print if /something/" < infile

Prints all of the lines with the regex something in them, from the file infile. "-e" tells perl to interpret the next argument as a script (&& run it), while "-n" tells perl to add a "while (<>) {}" around the whole script, which is like saying 'execute the script for every line of input'.

Great for parsing log files.

link|flag
show 3 more comments
vote up 0 vote down

To cut and paste arguments to a command

cmd `cat`

paste followed by ctrl-d

link|flag
vote up 0 vote down

On Windows, when working with code, often I do heavy use of Command Window Here and then findstr

findstr /c:"string_to_be_searched" /s *.cpp

Is pretty useful.

link|flag
vote up 2 vote down
  1. grep -v (Invert match)
  2. ls -ltr (Last modified files first)
  3. cat file | sed 's/old/new/' (Replace regex old with new)
link|flag
2  
Feline abuse: should be "sed 's/old/new/' < file" instead. :-) – Ben Blank Mar 19 at 1:42
1 2 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.