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. |
||||
|
|
|
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
|
|||
|
|
|
|
For bash, using !$ to repeat last argument to last command.
And the magic carets, although I rarely use them nowadays:
Last but not least, for infinite loops I use this (not a trick, just a quirk of mine :)
|
|||
|
|
|
|
|
|||
|
|
|
|
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. |
|||
|
|
|
|
to get ip settings networkid and hostid get ip address
get networkid
|
|||
|
|
|
|
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 |
|||
|
|
|
|
get count of lines with native windows tools such as
|
|||
|
|
|
|
Command line calculator to enhance batch arithmetic operations specially divison math written in C#
then you can invoke command line compiler on it as follows %windir%\Microsoft.NET\Framework\v2.0.50727\csc.exe calc.cs |
|||
|
|
|
|
another cool command is
for reveling hidden files from current direcoty and subdirectoris |
|||
|
|
|
|
Print Disk Volumes
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
D:\ E:\ F:\ G:\ I:\ J:\ then you can get first volume as follows
would result an output like this C:\ any enhancement for this would be cool |
|||
|
|
|
|
IP range scanner
|
|||
|
|
|
|
|
||||
|
|
|
On Windows, when working with code, often I do heavy use of Command Window Here and then findstr
Is pretty useful. |
|||
|
|
|
|
To cut and paste arguments to a command
paste followed by ctrl-d |
|||
|
|
|
|
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. |
|||
|
|
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. |
||||
|
|
|
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. |
|||
|
|
in bash, for loops. I particularly like the structure:
|
|||
|
|
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, 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. |
||||||||
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
bash-completion: the greatest things since bash completion This gives you relevant completion suggestions for what you've currently typed. Extremely useful! |
|||
|
|
|
|
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. |
||
|
|
|
|
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. |
|||
|
|
Creating a m3u file from command:
|
|||
|
|
|
|
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. |
||
|
|
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. |
||||
|
|
|
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. |
|||
|
|