convert hex scn to readable format by perl
shirleylove269
2018-06-28 11:11:33
Oracle
原创
scn_perl.sh
#!/usr/bin/perl -w
use strict;
use bignum;
my ( $scnHi, $scnLo ) = split ('\.', '0x0000.00766f44' );
my $scn = ( (hex $scnHi ) << 32 ) + hex $scnLo;
print "$scn\n";
kill inactive process script
Convert hex to decimal function