This repository has been archived on 2024-10-01. You can view files and clone it, but cannot push or open issues or pull requests.
badhouseplants-net-old/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";
}