Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 8644A1012A for ; Fri, 18 Oct 2013 23:52:03 +0000 (UTC) Received: (qmail 34386 invoked by uid 500); 18 Oct 2013 23:52:03 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 34192 invoked by uid 500); 18 Oct 2013 23:52:03 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 34091 invoked by uid 99); 18 Oct 2013 23:52:02 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Oct 2013 23:52:02 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 3BE5B36EB0; Fri, 18 Oct 2013 23:52:02 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: elserj@apache.org To: commits@accumulo.apache.org Date: Fri, 18 Oct 2013 23:52:06 -0000 Message-Id: <5e21d7aac0a14678bba5e0da72776425@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [5/6] git commit: ACCUMULO-1783 A simple little wrapper script for some convenience setting up PIG_CLASSPATH all the time. ACCUMULO-1783 A simple little wrapper script for some convenience setting up PIG_CLASSPATH all the time. Project: http://git-wip-us.apache.org/repos/asf/accumulo-pig/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo-pig/commit/d75f91c4 Tree: http://git-wip-us.apache.org/repos/asf/accumulo-pig/tree/d75f91c4 Diff: http://git-wip-us.apache.org/repos/asf/accumulo-pig/diff/d75f91c4 Branch: refs/heads/1.4 Commit: d75f91c478fb724ef804958f9239d170e1f68bd6 Parents: e1af2f3 Author: Josh Elser Authored: Fri Oct 18 19:49:09 2013 -0400 Committer: Josh Elser Committed: Fri Oct 18 19:49:09 2013 -0400 ---------------------------------------------------------------------- accumulo-pig | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo-pig/blob/d75f91c4/accumulo-pig ---------------------------------------------------------------------- diff --git a/accumulo-pig b/accumulo-pig new file mode 100755 index 0000000..7bf96e6 --- /dev/null +++ b/accumulo-pig @@ -0,0 +1,7 @@ +#!/bin/sh + +export PIG_CLASSPATH=./target/accumulo-pig-1.4.4-SNAPSHOT.jar:$ACCUMULO_HOME/lib/accumulo-core-1.4.5-SNAPSHOT.jar:$ACCUMULO_HOME/lib/libthrift-0.6.1.jar:$ACCUMULO_HOME/lib/cloudtrace-1.4.5-SNAPSHOT.jar + +pig -v -x mapreduce + +# vim: ft=sh