����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 3.144.162.109 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /lib64/nagios/plugins/extra/ |
Upload File : |
#!/usr/bin/perl use English; exec "sudo $0" if $UID > 0; my @hash; my @hash_files = `find /home/rde/denic/out/ -type f -name '*hash.txt' | sort -k1,1r | head -2`; chomp @hash_files; for my $file (@hash_files) { open(my $fh, '<:encoding(UTF-8)', $file) or die "Could not open file '$file' $!"; while (my $row = <$fh>) { chomp $row; my @lines = split ' ', $row; push @hash, $lines[0]; } } if ( $hash[0] eq $hash[1] ) { print "Last hashes are equal\n"; print "$hash_files[0]: $hash[0]\n"; print "$hash_files[1]: $hash[1]\n"; exit 2; } else { print "OK\n"; exit 0; }