You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by tv...@apache.org on 2010/01/18 07:48:28 UTC

svn commit: r900289 - /pivot/infra/bin/list-originations.sh

Author: tvolkert
Date: Mon Jan 18 06:48:28 2010
New Revision: 900289

URL: http://svn.apache.org/viewvc?rev=900289&view=rev
Log:
Added shell script

Added:
    pivot/infra/bin/list-originations.sh

Added: pivot/infra/bin/list-originations.sh
URL: http://svn.apache.org/viewvc/pivot/infra/bin/list-originations.sh?rev=900289&view=auto
==============================================================================
--- pivot/infra/bin/list-originations.sh (added)
+++ pivot/infra/bin/list-originations.sh Mon Jan 18 06:48:28 2010
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+for f in `find . -type f | grep -Ev '(.svn|/\.)'` ; do ORIGINATION_NAME=`svn pg origination-name $f 2>/dev/null`; if [ -n "$ORIGINATION_NAME" ]; then printf "%-*s" 120 "$f"; echo "$ORIGINATION_NAME"; fi; done > ~/originations.txt
+cat ~/originations.txt |grep -E 'silk$' | sed -r 's:^\./::' | sed -r 's: .*$::' | sed -r 's:^:     :' | sort
+cat ~/originations.txt |grep -E 'silk-companion$' | sed -r 's:^\./::' | sed -r 's: .*$::' | sed -r 's:^:     :' | sort
+cat ~/originations.txt |grep -E 'famfamfam$' | sed -r 's:^\./::' | sed -r 's: .*$::' | sed -r 's:^:     :' | sort
+cat ~/originations.txt |grep -E 'tango$' | sed -r 's:^\./::' | sed -r 's: .*$::' | sed -r 's:^:     :' | sort