Re: Some notes on pgAdmin

From: "Dickson S(dot) Guedes" <listas(at)guedesoft(dot)net>
To: Euler Taveira de Oliveira <euler(at)timbira(dot)com>
Cc: Magnus Hagander <magnus(at)hagander(dot)net>, Dave Page <dpage(at)pgadmin(dot)org>, Chuck McDevitt <cmcdevitt(at)greenplum(dot)com>, pgadmin-hackers <pgadmin-hackers(at)postgresql(dot)org>
Subject: Re: Some notes on pgAdmin
Date: 2009-03-10 13:51:48
Message-ID: 1236693108.7858.48.camel@analise3.cresoltec.com.br
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Em Ter, 2009-03-10 às 10:37 -0300, Dickson S. Guedes escreveu:
> I don't know if somebody did it yet bu just for information.
>
> $ cd ~/src/pgadmin3/pgadmin
> $ LC_ALL=en_US svn update
> At revision 7657.
>
> $ find ./ -name "*.cpp" -exec egrep "^([[:space:]]{4}|\t)+" {} \; | wc
> -l
> 47911 matching lines started with 4 spaces or tabs
>
> $ find ./ -name "*.cpp" -exec egrep -H "^([[:space:]]{4}|\t)+" {} \; |
> cut -d':' -f1 | sort | uniq | wc -l
> 273 files matching lines started with 4 space or tabs

I forgot two more...

find ./ -name "*.cpp" -exec egrep -H "^(\t)+" {} \; | cut -d':' -f1 |
sort | uniq | wc -l
31 files matching lines started with tabs...

find ./ -name "*.cpp" -exec egrep -H "^[[:space:]]+\t+" {} \; | cut
-d':' -f1 | sort | uniq | wc -l
182 files matching lines started wit spaces followed by tabs..

[]s
Dickson S. Guedes
mail/xmpp: guedes(at)guedesoft(dot)net - skype: guediz
http://guedesoft.net - http://planeta.postgresql.org.br

In response to

Browse pgadmin-hackers by date

  From Date Subject
Next Message svn 2009-03-10 15:50:58 SVN Commit by dpage: r7658 - in trunk/pgadmin3: . pgadmin pgadmin/ctl pgadmin/db pgadmin/debugger pgadmin/dlg pgadmin/frm pgadmin/gqb pgadmin/include pgadmin/include/ctl pgadmin/include/db pgadmin/include/debugger pgadmin/include/dlg pgadmin/include/frm pgadmin/include/images pgadmin/include/parser pgadmin/include/schema pgadmin/include/utils pgadmin/schema pgadmin/slony pgadmin/ui pgadmin/utils
Previous Message Dickson S. Guedes 2009-03-10 13:37:51 Re: Some notes on pgAdmin