This commit is contained in:
Luxferre
2024-03-12 09:59:44 +02:00
parent e92f20e471
commit 2a98263669
+1 -1
View File
@@ -21,7 +21,7 @@ function luhn(imeistr, acc, i, l, d) {
BEGIN {
srand() # init PRNG
imei=ARGV[1]
imei = ARGV[1]
gsub(/[^0-9]/, "", imei) # remove all non-digits
for(i=0;i<14;i++) # append 14 random digits
imei = imei int(rand()*10)