http://qs1969.pair.com?node_id=1171425


in reply to Re^4: Capturing bash output without displaying STOUT in terminal
in thread Capturing bash output without displaying STOUT in terminal

OK, first I had to suss out git to clear tags so I could test:

git tag -d $(git tag)

does it.

Now, as assumed, output goes somewhere else, so:

#!/usr/bin/perl use warnings; use strict; my $git; $git = `git fetch --tags 2>&1`; print "What's here? --- $git\n";

sorts it.

Nick