diff --git a/examples/fix_save.pl b/examples/fix_save.pl new file mode 100644 index 0000000..b464537 --- /dev/null +++ b/examples/fix_save.pl @@ -0,0 +1,13 @@ +#!/usr/bin/env perl +use v5.36.0; +use strict; +use warnings; + +my $input_file = $ARGV[0] or die 'No input save'; + +open my $fh, '<', $input_file; +read $fh, my $raw_save, 128*1024; +close $fh; +open $fh, '>', $input_file; +print $fh $raw_save; +close $fh;