Tagged Questions
0
votes
2answers
206 views
How to find .h,.c and .cc files under current directory in linux?
find . -name "*.[hc]|*.cc"
The above doesn't work,why?
UPDATE
How do I find these 3 kinds of files with a single pattern?
1
vote
2answers
205 views
finding a group of string common in two files
I have used diff command in past.I faced a situation to which I did not had a clue
here are some text strings (which can be stored in a file)
CONFIG_XEN=y
CONFIG_XEN_PVHVM=y
...
1
vote
3answers
1k views
How to delete everything except .svn directories?
I have quite complex directory tree. There are many subdirectories, in those subdirectories beside other files and directories are ".svn" directories.
Now, under linux I want to delete all files and ...