badhouseplants-net/scripts/cleanup.pl

18 lines
211 B
Perl
Raw Normal View History

#!/usr/bin/perl
# Modules used
use strict;
use warnings;
my $cmd = "git log --format=format:%H --all";
my @output = `$cmd`;
chomp @output;
foreach my $line (@output)
{
print "$line";
}