You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2013/10/19 01:52:06 UTC

[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 <el...@apache.org>
Authored: Fri Oct 18 19:49:09 2013 -0400
Committer: Josh Elser <el...@apache.org>
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