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. |
||||
|
|
|
Running |
||||||||
|
|
|
Ctrl-R in bash to search for a previously entered command. |
||
|
|
|
|
I like my bash prompt to be a different colour. In your .bashrc or .profile:
|
|||
|
|
|
|
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:
|
||
|
|
scripts and IF. |
||
|
|
|
|
Favourite command line hyperproductivity trick: I like the Tab key for path/file completion in bash. Favourite command line tool:
|
|||
|
|
Piping the output of grep (or findstr) to itself to exclude things I don't want. For example:
|
|||
|
|
|
|
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 |
||
|
|
At the Mac OS X bash prompt issuing
starts up the application associated with |
||||
|
|
|
I think you are looking for the Command-line Fu Website! :) |
||
|
|
In tcsh, using Some examples:
|
||
|
|
|
|
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. |
|||
|
|
|
|
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. |
||||
|
|
|
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. |
||
|
|
Creating a m3u file from command:
|
|||
|
|
|
|
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. |
|||
|
|
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. |
||
|
|
|
|
bash-completion: the greatest things since bash completion This gives you relevant completion suggestions for what you've currently typed. Extremely useful! |
|||
|
|
|
|
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, 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. |
||||||||
|
|
|
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, for loops. I particularly like the structure:
|
|||
|
|
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:
Remove files not accessed in more than a week:
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. |
|||
|
|
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. |
||||
|
|
|
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. |
|||
|
|
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. |
|||
|
|
|
|
|
||||
|