Find special hidden files (e.g. .#Makefile.1.31)

2009-01-25 Thread Patrick Oeschger
Makefile was modified in the source tree. After a CVS update the modified file is renamed to .#Makefile.1.31. I tried the cmd 'find' to find all files starting with '.#' in the source tree. Tried escape characters for '.' and '#' but did not succeed... Any advise/hints? BR /pat

Re: Find special hidden files (e.g. .#Makefile.1.31)

2009-01-25 Thread Eugene Ryazanov
2009/1/25 Patrick Oeschger tbeoe...@armdev.swissptt.ch: I tried the cmd 'find' to find all files starting with '.#' in the source tree. Tried escape characters for '.' and '#' but did not succeed... find . -name .\\#*

Re: Find special hidden files (e.g. .#Makefile.1.31)

2009-01-25 Thread Alexander Yurchenko
On Sun, Jan 25, 2009 at 01:19:28PM +0100, Patrick Oeschger wrote: Makefile was modified in the source tree. After a CVS update the modified file is renamed to .#Makefile.1.31. I tried the cmd 'find' to find all files starting with '.#' in the source tree. Tried escape characters for '.' and