Skip to content

Commit 73f292e

Browse files
author
ThreePlanetsSoftware
committed
Added version variable and set it to 1.0.0
1 parent b841a12 commit 73f292e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sqlite_miner.pl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
use Time::HiRes qw(time);
2626
use File::Find;
2727

28+
my $version = "1.0.0";
29+
2830
# Set up initial variables
2931
my $start_time = time;
3032
our $verbose = 0;
@@ -572,7 +574,7 @@ sub print_final_results {
572574

573575
# Function to print run header
574576
sub print_copyright {
575-
print "SQLite Miner - Copyright (C) 2017 Jon Baumann, Ciofeca Forensics (https://www.ciofecaforensics.com)\n";
577+
print "SQLite Miner $version - Copyright (C) 2017 Jon Baumann, Ciofeca Forensics (https://www.ciofecaforensics.com)\n";
576578
print "\tThis program comes with ABSOLUTELY NO WARRANTY;\n";
577579
print "\tThis is free software, and you are welcome to redistribute it under certain conditions.\n";
578580
print "\tSee http://www.gnu.org/licenses/\n\n";

0 commit comments

Comments
 (0)