Re: Find special hidden files (e.g. .#Makefile.1.31)
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 '#' but did not succeed... > Any advise/hints? find . -name '.#*' > BR > /pat -- Alexander Yurchenko
Re: Find special hidden files (e.g. .#Makefile.1.31)
2009/1/25 Patrick Oeschger : > 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 .\\#*
Find special hidden files (e.g. .#Makefile.1.31)
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