Skip to content

Instantly share code, notes, and snippets.

View codetricity's full-sized avatar

Craig Oda codetricity

View GitHub Profile
@sbeitzel
sbeitzel / build_stamper.pl
Created June 24, 2021 22:09
Perl script to rename a flutter web app with a unique name.
#!/usr/bin/perl
use strict;
use warnings;
sub hash_file {
my $fileName = shift(@_);
my $sumString = `md5sum $fileName`;
if ($sumString =~ /([a-f0-9]{32})/) {
return $1;