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
4  
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 0 vote down

In bash I sometimes misuse the fact that I know globbing a pattern will result in exactly two filenames. So if i have two textfiles stuff.txt and stuff.txt.org and I want to compare there contents I enter:

diff stuff.txt*
link|flag
vote up 0 vote down

For bash, using !$ to repeat last argument to last command.

ls /var/log/messages
cp !$ !$.270809

And the magic carets, although I rarely use them nowadays:

[root@isis /] usradd -u 666 -g 10 -u guest
bash: usradd: command not found
[root@isis /] ^ra^era^
useradd -u 666 -g 10 -u guest

Last but not least, for infinite loops I use this (not a trick, just a quirk of mine :)

until [6 -eq 9]; echo "Jimi has really gotten into me."; done
link|flag
vote up 0 vote down
wget -t0 -np -r -l0 "www.suckthiswebsite.com"
link|flag
vote up 0 vote down

Shell-fu is a place for storing, moderating and propagating command line tips and tricks. A bit like StackOverflow, but solely for shell. You'll find plenty of answers to this question there.

link|flag
vote up 0 vote down

to get ip settings networkid and hostid get ip address

for /f "tokens=15" %i in ('ipconfig ^| find /i "ip address"') do set ip=%i

get networkid

for /F  "tokens=1,2,3 delims=." %i in ('echo %ip%') do  @set ip=%i.%j.%k.
link|flag
vote up 1 vote down

I have too much music I guess; so here is one thing I use that hasn't been listed:

locate -i artist | grep -i mp3$

substitute artist for song name etc. I include the "-i" options to make it case in-sensitive. I had to edit /etc/updatedb.conf to include my mounts in /media

link|flag
vote up 0 vote down

get count of lines with native windows tools such as

$find /v /c "no_where_string" filename
link|flag
vote up 0 vote down

Command line calculator to enhance batch arithmetic operations specially divison math written in C#

**class Program
    {
       static void Syntax()
        {
            System.Console.Write("Example: calc 10 + 25 or calc 10 / 2 \n");
        }

        static void Main(string[] args)
        {


            try
            {
                if (args.Length == 3 && args.Length != 0 && Microsoft.VisualBasic.Information.IsNumeric(args.GetValue(0)) && Microsoft.VisualBasic.Information.IsNumeric(args.GetValue(2)))
                {


                    //foreach (string var in args)
                    //{


                    string op = (string)args.GetValue(1);
                    double arg1 = System.Convert.ToDouble(args.GetValue(0));
                    double arg2 = System.Convert.ToDouble(args.GetValue(2));
                    switch (op)
                    {

                        case "+":


                            System.Console.Write(arg1 + arg2);

                            break;
                        case "/":
                            //double v = Convert.ToDouble(args.GetValue(2));
                            if (arg2 == 0 || arg2 == 0.0)
                                System.Console.Write("Cannot divide by zero!.");
                            else

                                System.Console.Write(arg1 / arg2);


                            break;
                        case "*":
                            System.Console.Write(arg1 * arg2);
                            break;
                        case "-":
                            System.Console.Write(arg1 - arg2);
                            break;
                        default:
                            Console.WriteLine("An attempt to an illegal operation! please check syntax.\n");
                            Syntax();
                            break;
                    }


                    //}

                }
                else
                {
                    System.Console.Write("Missing argument or bad syntax .\n");
                    Syntax();

                }
            }
            catch (Exception ex)
            {
            }

        }
    }**

then you can invoke command line compiler on it as follows %windir%\Microsoft.NET\Framework\v2.0.50727\csc.exe calc.cs

link|flag
vote up -1 vote down

another cool command is

$dir /A /s /B *.ext

for reveling hidden files from current direcoty and subdirectoris

link|flag
vote up 0 vote down

Print Disk Volumes

$fsutil fsinfo drives

would result an output like this Drives: C:\ D:\ E:\ F:\ G:\ I:\ J:\ Piping to more would result the following output $fsutil fsinfo drives | more

Drives: C:\ D:\ E:\ F:\ G:\ I:\ J:\

using for to get volumes would result an output like thi

$for /F "skip=2" %i in ('fsutil fsinfo drives ^| more') do @echo %i

D:\ E:\ F:\ G:\ I:\ J:\

then you can get first volume as follows

$for /F "tokens=2" %i in ('fsutil fsinfo drives') do @echo %i

would result an output like this C:\

any enhancement for this would be cool

link|flag
vote up 0 vote down

IP range scanner

$for /L %i in (1,1,254) do @ping  192.168.1.%i -n 1 | find /i "reply" > nul
&& @echo 192.168.1.%i is alive
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
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 0 vote down

To cut and paste arguments to a command

cmd `cat`

paste followed by ctrl-d

link|flag
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 11 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 -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 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 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 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 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 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 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 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 14 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 3 vote down

Creating a m3u file from command:

dir /B *.mp3 > playlist.m3u
link|flag
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 7 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 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
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.