On Thu, 13 Mar 2008 02:03:38 -0700, [EMAIL PROTECTED] 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 _______________________________________________ help-gplusplus mailing list help-gplusplus@gnu.org http://lists.gnu.org/mailman/listinfo/help-gplusplus