- or download this
#!/usr/bin/perl
...
my $git = system('git fetch --tags');
print "What's here? --- $git\n";
- or download this
my $git = system('git fetch --tags &> /dev/null');
- or download this
git fetch --tags &> /tmp/git.txt
- or download this
#!/usr/bin/perl
...
print "v$newest is greater than the running version v$running_
+version\n";
}
}