Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 59816 invoked from network); 26 Jan 2006 08:52:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 26 Jan 2006 08:52:05 -0000 Received: (qmail 91826 invoked by uid 500); 26 Jan 2006 08:52:04 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 91805 invoked by uid 500); 26 Jan 2006 08:52:03 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 91794 invoked by uid 99); 26 Jan 2006 08:52:03 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Jan 2006 00:52:03 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 26 Jan 2006 00:52:00 -0800 Received: (qmail 59547 invoked by uid 65534); 26 Jan 2006 08:51:40 -0000 Message-ID: <20060126085140.59546.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r372486 - in /directory/trunks: codesize.sh sh-scripts/ sh-scripts/codesize.sh superclean.sh Date: Thu, 26 Jan 2006 08:51:39 -0000 To: commits@directory.apache.org From: ersiner@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: ersiner Date: Thu Jan 26 00:51:33 2006 New Revision: 372486 URL: http://svn.apache.org/viewcvs?rev=372486&view=rev Log: Adding and organizing scripts. Added: directory/trunks/sh-scripts/ directory/trunks/sh-scripts/codesize.sh - copied, changed from r372479, directory/trunks/codesize.sh directory/trunks/superclean.sh (with props) Removed: directory/trunks/codesize.sh Copied: directory/trunks/sh-scripts/codesize.sh (from r372479, directory/trunks/codesize.sh) URL: http://svn.apache.org/viewcvs/directory/trunks/sh-scripts/codesize.sh?p2=directory/trunks/sh-scripts/codesize.sh&p1=directory/trunks/codesize.sh&r1=372479&r2=372486&rev=372486&view=diff ============================================================================== --- directory/trunks/codesize.sh (original) +++ directory/trunks/sh-scripts/codesize.sh Thu Jan 26 00:51:33 2006 @@ -1,3 +1,6 @@ #!/bin/sh +# This script is supposed to be run from 'directory/trunks' +# with the command 'sh-scripts/codesize.sh' + echo Total lines of Java code is $(find . -type f -regex '.*\.java' | xargs cat | wc -l). Added: directory/trunks/superclean.sh URL: http://svn.apache.org/viewcvs/directory/trunks/superclean.sh?rev=372486&view=auto ============================================================================== --- directory/trunks/superclean.sh (added) +++ directory/trunks/superclean.sh Thu Jan 26 00:51:33 2006 @@ -0,0 +1,8 @@ +#!/bin/sh + +# This script is supposed to be run from 'directory/trunks' +# with the command 'sh-scripts/superclean.sh' + +find . -name target | xargs rm -rf +rm -rf ~/.m2/repository/org/apache/directory/ + Propchange: directory/trunks/superclean.sh ------------------------------------------------------------------------------ svn:executable = *