about summary refs log tree commit homepage
path: root/lib/PublicInbox/Git.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-12-31 21:16:39 +0000
committerEric Wong <e@80x24.org>2016-04-05 18:58:27 +0000
commite82a365d610f4939767c219fd3d642915cd1826c (patch)
tree8f76588b6f5eb3b19e6cc0e7c42c738ac00ba7d2 /lib/PublicInbox/Git.pm
parent4d3ea41416450e69c157f11e2e9057bc764c1e96 (diff)
downloadpublic-inbox-e82a365d610f4939767c219fd3d642915cd1826c.tar.gz
This lets us one-line git commands easily like ``, but without
having to remember --git-dir or escape arguments.
Diffstat (limited to 'lib/PublicInbox/Git.pm')
-rw-r--r--lib/PublicInbox/Git.pm8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/PublicInbox/Git.pm b/lib/PublicInbox/Git.pm
index a7e50925..ac556426 100644
--- a/lib/PublicInbox/Git.pm
+++ b/lib/PublicInbox/Git.pm
@@ -131,6 +131,14 @@ sub popen {
         popen_rd(\@cmd);
 }
 
+sub qx {
+        my ($self, @cmd) = @_;
+        my $fh = $self->popen(@cmd);
+        return <$fh> if wantarray;
+        local $/;
+        <$fh>
+}
+
 sub cleanup {
         my ($self) = @_;
         _destroy($self, qw(in out pid));