help-gplusplus
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to use find to find hidden files


From: Lionel B
Subject: Re: How to use find to find hidden files
Date: Thu, 13 Mar 2008 09:46:55 +0000 (UTC)
User-agent: Pan/0.132 (Waxed in Black)

On Thu, 13 Mar 2008 02:03:38 -0700, parag_paul@hotmail.com wrote:

> hi All,
> Is there a way to use find to see hidden files

Absolutely no idea what this has to do with g++ ...

...but assuming you are on some Unix (I guess you are if you have `find') 
and if by "hidden files" you mean files with names beginning with `.':

$ find . -name \.\*

should find all such from your current directory (you have to escape the 
`.' and `*' with a `\').

-- 
Lionel B


reply via email to

[Prev in Thread] Current Thread [Next in Thread]