To find files containing a particular string, I use this often
find . -name * | xargs grep -iH "string"
|
4
|
To find files containing a particular string, I use this often find . -name * | xargs grep -iH "string"
|
||||||||||
|
|
|
My most frequently used commands are ps, lsof (list open files), grep / awk / sed / cut (and various other line editors) as well as netstat. Lsof is one of the most useful but frequently forgotten. For instance:
Ok, so now I know /foo is busy becuase someone has a shell open and is sitting in /foo :) That's really just the tip of the iceberg. Its also handy to know what fds any given process has open. A lot of people use find all of the time, when slocate might be better, so don't forget about slocate :) If you find yourself (pardon the pun) doing this:
... you'd be better off using slocate first. Finally, valrgind is commonly associated as a programming tool .. however it is entirely useful for detecting leaks and other erratic behavior in other programs. For instance, if by some crazy way you manage to make sed segfault ... valgrind is neat to take a peek. |
||
|
|
|
|
I find that
Is very useful sed on a file, but in place instead of requiring to put the output somewhere then move it over the top of the source.
Is also handy to do a recursive grep and hilight the found matches. I actually wrote a little shell function called 'svngrep' to skip over the .svn files in our working copies and just look at active code and provide hilighting. The same can be done for Git and others. I have a .bashrc that contains the following:
pgrep and pkill come in handy all of the time. Awk is your friend. Learn its syntax because it can so many great things and save you much time.
Will give you a break down of sizes of all the file you list and also show you the total. Very useful for working out quickly if the current directory is big and what under it might be big.
Self-explanitory.
Screen is the spawn of the Unix god. If you ever work by SSH on a machine then consider using Screen. It gives you a persistent session with the ability to create multiple "tabs" and also detach, leaving screen running after you log off. You can come back later and reattach with 'screen -r'. If your remote session gets booted due to network problems you can log back in and use the detach-reattach method to get your work back, having not lost that last critical edit that took half an hour and you hadn't saved yet. Screen has saved my ass from that countless times. |
||
|
|
|
|
#poweroffYou talking about power commands, right? ;-P |
||
|
|
|
|
two power commands: btw, your find and grep combination is not safe, what if the filename contains space? the safe way is to do like this:
|
||
|
|
|
Find if a process is running and get the pids in a tree view:
Find a string in a directory of files recursively:
Make all the files executable in a directory recursively:
Erase a file but keep its existence and permissions:
Just for fun:
|
||
|
|
|
|
My favorite commands in linux are :
Also less known (and dangerous) don't try this at home kids :
|
||
|
|
|
|
a dos2unix perl one liner I like :
That can easily be converted in unix2dos by reversing the order in the replacement. |
||
|
|
|
|
I find |
||
|
|
|
|
The ones I use the most from the command-line are
|
||
|
|
|
|
The command in the original question can be better written as,
I use grep -R quite frequently. Of course, the find command can be used for fine-tuning the files to search. I often use the -00 flag to perl to print "paragraph" mode.
Change a string to something else, inline, while making backup copies of the original file(s) (from Minimal Perl):
I like side-by-side diffs:
Or syntax-highlighted diffs:
I went looking through my history a bit to see if there were other commands, but sadly(??) most of my system maintenance, administration and programming is done through automated tools, lately all written in Ruby (puppet, capistrano, some home-rolled tools, etc), or are related to SCM (git, svn). |
||
|
|
|
|
Mine's are awk - for filtering and extracting fields find - for finding files/directories xargs - build command lists, often i use it with find less - for quickly browsing/reading files man/info - for viewing manpages and info pages emacs - for editing source code irssi - to get in touch with other developers cd - to change to home dir and to other directories killall - to kill not behaving commands (yeah, you get power!) ps - to list processes (oh noes, i hate hanging mplayers blocking my sound!) <CTRL>+<R> - completion of commands by searching in history file <TAB> - for completing directory and file names And, last but not least, the most often used power command is |
|||
|
|
|
I use |
||
|
|
|
|
For finding which directories take up most space (for potential cleanup), start at the desired level, such as /home and execute:
This gives a sorted (most use to least use) list based on space used such as:
You can then run the same command from within /home/bob:
to get:
Hence you now know what's using up most of the space on the /home filesystem (and Bob will soon be getting his marching orders :-). |
||
|
|
|
I use find's -exec option fairly often. For instance, I often want to change the permissions for a whole directory tree, giving the directories execute permissions, but not the files. I do this in two steps:
The above would make the whole tree readonly to everyone, but still allow anyone to cd into any directory. |
||
|
|
|
Not exactly a regular command but rather the short-cut 'Ctrl + r' for auto completion of bash commands. |
||
|
|
|
|
Callling the script |
||||
|
|
|
I often find myself needing to find a file that contains a particular string. For that I use:
There is such a wide range of things I need to do on a regular basis, that it is hard to pick out specific commands. Mostly just lots of combinations of sed, awk, grep, and find, with some random until thrown in for processing. |
||
|
|
|
My top commands:
|
||
|
|