bash, bat, whatever...
What is your favourite command line hyperproductivity trick?
|
20
|
bash, bat, whatever... What is your favourite command line hyperproductivity trick? |
|||
|
|
|
|
Entering
to open a Windows Explorer window for the current directory. |
||||
|
|
|
Ctrl-R in bash to search for a previously entered command. |
||
|
|
|
|
I think you are looking for the Command-line Fu Website! :) |
||
|
|
Favourite command line hyperproductivity trick: I like the Tab key for path/file completion in bash. Favourite command line tool:
|
|||
|
|
On Windows:
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. |
|||
|
|
Running |
||||||||
|
|
|
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. |
||||
|
|
|
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. |
|||
|
|
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. |
||||
|
|
|
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:
|
||
|
|
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 |
||
|
|
In Bash, the ! keyword thingummy. e.g.
runs the latest entry from your command line history that began with 'ssh'. or
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. |
||||||||
|
|
|
Creating a m3u file from command:
|
|||
|
|
|
|
On Windows:
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
In bash:
turns on vi mode. Also, adding this to ~/.inputrc will turn on vi mode for anything using readline:
I am more familiar with the vi commands than I am with the emacs ones, so these changes give me a productivity boost. |
|||
|
|
|
|
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 " Great for parsing log files. |
|||
|
|
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):
Or, if you like "explore" (show file tree) better:
(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. |
||
|
|
|
|
|
||||
|
|
|
At the Mac OS X bash prompt issuing
starts up the application associated with |
||||
|
|
|
Piping the output of grep (or findstr) to itself to exclude things I don't want. For example:
|
|||
|
|
|
|
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 |
|||
|
|
|
|
scripts and IF. |
||
|
|
|
|
I like my bash prompt to be a different colour. In your .bashrc or .profile:
|
|||
|
|
|
|
In tcsh, using Some examples:
|
||
|
|
|
|
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. |
||
|
|
bash-completion: the greatest things since bash completion This gives you relevant completion suggestions for what you've currently typed. Extremely useful! |
|||
|
|
|
|
in bash, for loops. I particularly like the structure:
|
|||
|
|
To cut and paste arguments to a command
paste followed by ctrl-d |
|||
|
|
|
|
On Windows, when working with code, often I do heavy use of Command Window Here and then findstr
Is pretty useful. |
|||
|
|