From d51c46b2eabcc51c461ace585700a401d7b3814d Mon Sep 17 00:00:00 2001 From: Abu Shifrah <35174370+muaawiyahtucker@users.noreply.github.com> Date: Fri, 11 Jul 2025 10:52:58 +0300 Subject: [PATCH] Added missed step clarifying that what is desplayed is the digital version, not the hex output. --- 11_3_Using_CSV_in_Scripts.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/11_3_Using_CSV_in_Scripts.md b/11_3_Using_CSV_in_Scripts.md index ec0a994..889e4c9 100644 --- a/11_3_Using_CSV_in_Scripts.md +++ b/11_3_Using_CSV_in_Scripts.md @@ -51,6 +51,8 @@ Finally, bitwise-or the 23rd bit into the hex value you created: ``` $ relativevalue=$(printf '%x\n' $((0x$hexvalue | 0x400000))) $ echo $relativevalue +4076a7 +$ printf "%d\n" "0x$relativevalue" 4224679 ``` If you convert that back you'll see that 4224679 = 10000000111011010100111. The 23rd digit is set to a "1"; meanwhile the first 2 bytes, 0111011010100111, convert to 76A7 in hex or 30375 in decimal. Multiply that by 512 and you get 15.55 million seconds, which indeed is 180 days.