Help for this page

Select Code to Download


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