Pad a number with a zero

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
5
down vote

favorite
2












I'm trying to pad zero to a number



a=010
printf "%04d" $a
0008


I need the "output" as "0010"
it's converting the value.



and even tried with typeset



a=010
typeset -RZ2 a
echo $a


when I use the same in my script I got the following error:



Invalid -R option









share|improve this question























  • the problem in with the input, not the output.
    – ctrl-alt-delor
    Aug 26 '13 at 12:47














up vote
5
down vote

favorite
2












I'm trying to pad zero to a number



a=010
printf "%04d" $a
0008


I need the "output" as "0010"
it's converting the value.



and even tried with typeset



a=010
typeset -RZ2 a
echo $a


when I use the same in my script I got the following error:



Invalid -R option









share|improve this question























  • the problem in with the input, not the output.
    – ctrl-alt-delor
    Aug 26 '13 at 12:47












up vote
5
down vote

favorite
2









up vote
5
down vote

favorite
2






2





I'm trying to pad zero to a number



a=010
printf "%04d" $a
0008


I need the "output" as "0010"
it's converting the value.



and even tried with typeset



a=010
typeset -RZ2 a
echo $a


when I use the same in my script I got the following error:



Invalid -R option









share|improve this question















I'm trying to pad zero to a number



a=010
printf "%04d" $a
0008


I need the "output" as "0010"
it's converting the value.



and even tried with typeset



a=010
typeset -RZ2 a
echo $a


when I use the same in my script I got the following error:



Invalid -R option






printf typeset






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 20 at 22:39









Rui F Ribeiro

38.2k1475125




38.2k1475125










asked Aug 26 '13 at 7:05









user43067

57235




57235











  • the problem in with the input, not the output.
    – ctrl-alt-delor
    Aug 26 '13 at 12:47
















  • the problem in with the input, not the output.
    – ctrl-alt-delor
    Aug 26 '13 at 12:47















the problem in with the input, not the output.
– ctrl-alt-delor
Aug 26 '13 at 12:47




the problem in with the input, not the output.
– ctrl-alt-delor
Aug 26 '13 at 12:47










4 Answers
4






active

oldest

votes

















up vote
13
down vote













Don't put a "0" at the beginning of the number -- it treats the number in the octal base. Simply assign the decimal number.



a=10 
printf "%04d" $a
0010


If you are reading the numbers from somewhere else, you may consider removing the 0s at the beginning as follows:



a=0010 
b=$(echo $a | sed 's/^0*//')
printf "%04d" $a
0008
printf "%04d" $b
0010





share|improve this answer






















  • b=$(echo $a | sed 's/^0*//')
    – user43067
    Aug 26 '13 at 8:36










  • echo simply prints the value of the variable a, which is then redirected to sed (using the | character). Now, sed receives the string (i.e., value of a), and removes all the 0s at the beginning. The character ^ indicates beginning of a line; 0* means any number of zeroes including none. This essentially returns you the number with all 0s, if any, at the beginning removed. This value is then assigned to a new variable called b.
    – Barun
    Aug 26 '13 at 9:17











  • Please, whipe useless pipe! Write b=$(sed s/^0*// <<<"$a")
    – F. Hauri
    Mar 14 '17 at 6:52

















up vote
10
down vote













Under POSIX shell



You can drop the left 0 character with the following:



a=00010
while [ "$a" != "$a#0" ] ;do a=$a#0;done
printf "%08d" $a
00000010


As this doesn't fork a new command session, this could be quicker than using sed.



Under bash



You can force decimal interpretation with the following syntax:



a=000010
printf "%08d" $((10#$a))
00000010


This could be useful for conversions:



a="0a"
printf "%04d" $((16#$a))
0010

a="00001010"
printf "%04d" $((2#$a))
0010

a="00012"
printf "%04d" $((8#$a))
0010

a="0020"
printf "%04d" $((5#$a))
0010

a="0013"
printf "%04d" $((7#$a))
0010


and so on...



a="zz"
printf "%04d" $((36#$a))
1295





share|improve this answer






















  • b=$(echo $a | sed 's/^0*//') what exactly this step does ??
    – user43067
    Aug 26 '13 at 8:37










  • @user43067 $() generate a new command session (fork), echo $a will run in this new session, than | sed will generate a new command session to pipe to /bin/sed outer binary.
    – F. Hauri
    Aug 26 '13 at 14:40

















up vote
4
down vote













typeset -Z4 a will work with zsh or ksh.



When interpreted as a number, In POSIX sh and printf, if there's a leading zero, it's interpreted as an octal number. So, you need to strip those 0s first:



printf '%04dn' "$a#"$a%%[!0]*""


Or you could use awk that doesn't have that issue:



awk 'BEGINprintf "%04dn", ARGV[1]' "$a"





share|improve this answer





























    up vote
    4
    down vote













    You can accomplish that by using a different conversion specifier, for example the "f" specifier. From the printf manual:




    f, F



    The double argument is rounded and converted to decimal notation in
    the style [-]ddd.ddd, where the number of digits after the
    decimal-point character is equal to the precision specification. If
    the precision is missing, it is taken as 6; if the precision is
    explicitly zero, no decimal-point character appears. If a decimal
    point appears, at least one digit appears before it.




    But we don't really want a floating point representation of your number, so we must specify a precision of zero. This should do it:



    a=010
    printf "%04.0f" $a


    I'm assuming you are using Linux, but this should also work with other flavours of Unix.






    share|improve this answer




















    • Or, from man printf, u could use: printf "%04g" 010! +1, interesting way to explore too...
      – F. Hauri
      Aug 26 '13 at 14:51










    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "106"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













     

    draft saved


    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f88195%2fpad-a-number-with-a-zero%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    4 Answers
    4






    active

    oldest

    votes








    4 Answers
    4






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    13
    down vote













    Don't put a "0" at the beginning of the number -- it treats the number in the octal base. Simply assign the decimal number.



    a=10 
    printf "%04d" $a
    0010


    If you are reading the numbers from somewhere else, you may consider removing the 0s at the beginning as follows:



    a=0010 
    b=$(echo $a | sed 's/^0*//')
    printf "%04d" $a
    0008
    printf "%04d" $b
    0010





    share|improve this answer






















    • b=$(echo $a | sed 's/^0*//')
      – user43067
      Aug 26 '13 at 8:36










    • echo simply prints the value of the variable a, which is then redirected to sed (using the | character). Now, sed receives the string (i.e., value of a), and removes all the 0s at the beginning. The character ^ indicates beginning of a line; 0* means any number of zeroes including none. This essentially returns you the number with all 0s, if any, at the beginning removed. This value is then assigned to a new variable called b.
      – Barun
      Aug 26 '13 at 9:17











    • Please, whipe useless pipe! Write b=$(sed s/^0*// <<<"$a")
      – F. Hauri
      Mar 14 '17 at 6:52














    up vote
    13
    down vote













    Don't put a "0" at the beginning of the number -- it treats the number in the octal base. Simply assign the decimal number.



    a=10 
    printf "%04d" $a
    0010


    If you are reading the numbers from somewhere else, you may consider removing the 0s at the beginning as follows:



    a=0010 
    b=$(echo $a | sed 's/^0*//')
    printf "%04d" $a
    0008
    printf "%04d" $b
    0010





    share|improve this answer






















    • b=$(echo $a | sed 's/^0*//')
      – user43067
      Aug 26 '13 at 8:36










    • echo simply prints the value of the variable a, which is then redirected to sed (using the | character). Now, sed receives the string (i.e., value of a), and removes all the 0s at the beginning. The character ^ indicates beginning of a line; 0* means any number of zeroes including none. This essentially returns you the number with all 0s, if any, at the beginning removed. This value is then assigned to a new variable called b.
      – Barun
      Aug 26 '13 at 9:17











    • Please, whipe useless pipe! Write b=$(sed s/^0*// <<<"$a")
      – F. Hauri
      Mar 14 '17 at 6:52












    up vote
    13
    down vote










    up vote
    13
    down vote









    Don't put a "0" at the beginning of the number -- it treats the number in the octal base. Simply assign the decimal number.



    a=10 
    printf "%04d" $a
    0010


    If you are reading the numbers from somewhere else, you may consider removing the 0s at the beginning as follows:



    a=0010 
    b=$(echo $a | sed 's/^0*//')
    printf "%04d" $a
    0008
    printf "%04d" $b
    0010





    share|improve this answer














    Don't put a "0" at the beginning of the number -- it treats the number in the octal base. Simply assign the decimal number.



    a=10 
    printf "%04d" $a
    0010


    If you are reading the numbers from somewhere else, you may consider removing the 0s at the beginning as follows:



    a=0010 
    b=$(echo $a | sed 's/^0*//')
    printf "%04d" $a
    0008
    printf "%04d" $b
    0010






    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Aug 26 '13 at 9:19

























    answered Aug 26 '13 at 7:13









    Barun

    2,0071422




    2,0071422











    • b=$(echo $a | sed 's/^0*//')
      – user43067
      Aug 26 '13 at 8:36










    • echo simply prints the value of the variable a, which is then redirected to sed (using the | character). Now, sed receives the string (i.e., value of a), and removes all the 0s at the beginning. The character ^ indicates beginning of a line; 0* means any number of zeroes including none. This essentially returns you the number with all 0s, if any, at the beginning removed. This value is then assigned to a new variable called b.
      – Barun
      Aug 26 '13 at 9:17











    • Please, whipe useless pipe! Write b=$(sed s/^0*// <<<"$a")
      – F. Hauri
      Mar 14 '17 at 6:52
















    • b=$(echo $a | sed 's/^0*//')
      – user43067
      Aug 26 '13 at 8:36










    • echo simply prints the value of the variable a, which is then redirected to sed (using the | character). Now, sed receives the string (i.e., value of a), and removes all the 0s at the beginning. The character ^ indicates beginning of a line; 0* means any number of zeroes including none. This essentially returns you the number with all 0s, if any, at the beginning removed. This value is then assigned to a new variable called b.
      – Barun
      Aug 26 '13 at 9:17











    • Please, whipe useless pipe! Write b=$(sed s/^0*// <<<"$a")
      – F. Hauri
      Mar 14 '17 at 6:52















    b=$(echo $a | sed 's/^0*//')
    – user43067
    Aug 26 '13 at 8:36




    b=$(echo $a | sed 's/^0*//')
    – user43067
    Aug 26 '13 at 8:36












    echo simply prints the value of the variable a, which is then redirected to sed (using the | character). Now, sed receives the string (i.e., value of a), and removes all the 0s at the beginning. The character ^ indicates beginning of a line; 0* means any number of zeroes including none. This essentially returns you the number with all 0s, if any, at the beginning removed. This value is then assigned to a new variable called b.
    – Barun
    Aug 26 '13 at 9:17





    echo simply prints the value of the variable a, which is then redirected to sed (using the | character). Now, sed receives the string (i.e., value of a), and removes all the 0s at the beginning. The character ^ indicates beginning of a line; 0* means any number of zeroes including none. This essentially returns you the number with all 0s, if any, at the beginning removed. This value is then assigned to a new variable called b.
    – Barun
    Aug 26 '13 at 9:17













    Please, whipe useless pipe! Write b=$(sed s/^0*// <<<"$a")
    – F. Hauri
    Mar 14 '17 at 6:52




    Please, whipe useless pipe! Write b=$(sed s/^0*// <<<"$a")
    – F. Hauri
    Mar 14 '17 at 6:52












    up vote
    10
    down vote













    Under POSIX shell



    You can drop the left 0 character with the following:



    a=00010
    while [ "$a" != "$a#0" ] ;do a=$a#0;done
    printf "%08d" $a
    00000010


    As this doesn't fork a new command session, this could be quicker than using sed.



    Under bash



    You can force decimal interpretation with the following syntax:



    a=000010
    printf "%08d" $((10#$a))
    00000010


    This could be useful for conversions:



    a="0a"
    printf "%04d" $((16#$a))
    0010

    a="00001010"
    printf "%04d" $((2#$a))
    0010

    a="00012"
    printf "%04d" $((8#$a))
    0010

    a="0020"
    printf "%04d" $((5#$a))
    0010

    a="0013"
    printf "%04d" $((7#$a))
    0010


    and so on...



    a="zz"
    printf "%04d" $((36#$a))
    1295





    share|improve this answer






















    • b=$(echo $a | sed 's/^0*//') what exactly this step does ??
      – user43067
      Aug 26 '13 at 8:37










    • @user43067 $() generate a new command session (fork), echo $a will run in this new session, than | sed will generate a new command session to pipe to /bin/sed outer binary.
      – F. Hauri
      Aug 26 '13 at 14:40














    up vote
    10
    down vote













    Under POSIX shell



    You can drop the left 0 character with the following:



    a=00010
    while [ "$a" != "$a#0" ] ;do a=$a#0;done
    printf "%08d" $a
    00000010


    As this doesn't fork a new command session, this could be quicker than using sed.



    Under bash



    You can force decimal interpretation with the following syntax:



    a=000010
    printf "%08d" $((10#$a))
    00000010


    This could be useful for conversions:



    a="0a"
    printf "%04d" $((16#$a))
    0010

    a="00001010"
    printf "%04d" $((2#$a))
    0010

    a="00012"
    printf "%04d" $((8#$a))
    0010

    a="0020"
    printf "%04d" $((5#$a))
    0010

    a="0013"
    printf "%04d" $((7#$a))
    0010


    and so on...



    a="zz"
    printf "%04d" $((36#$a))
    1295





    share|improve this answer






















    • b=$(echo $a | sed 's/^0*//') what exactly this step does ??
      – user43067
      Aug 26 '13 at 8:37










    • @user43067 $() generate a new command session (fork), echo $a will run in this new session, than | sed will generate a new command session to pipe to /bin/sed outer binary.
      – F. Hauri
      Aug 26 '13 at 14:40












    up vote
    10
    down vote










    up vote
    10
    down vote









    Under POSIX shell



    You can drop the left 0 character with the following:



    a=00010
    while [ "$a" != "$a#0" ] ;do a=$a#0;done
    printf "%08d" $a
    00000010


    As this doesn't fork a new command session, this could be quicker than using sed.



    Under bash



    You can force decimal interpretation with the following syntax:



    a=000010
    printf "%08d" $((10#$a))
    00000010


    This could be useful for conversions:



    a="0a"
    printf "%04d" $((16#$a))
    0010

    a="00001010"
    printf "%04d" $((2#$a))
    0010

    a="00012"
    printf "%04d" $((8#$a))
    0010

    a="0020"
    printf "%04d" $((5#$a))
    0010

    a="0013"
    printf "%04d" $((7#$a))
    0010


    and so on...



    a="zz"
    printf "%04d" $((36#$a))
    1295





    share|improve this answer














    Under POSIX shell



    You can drop the left 0 character with the following:



    a=00010
    while [ "$a" != "$a#0" ] ;do a=$a#0;done
    printf "%08d" $a
    00000010


    As this doesn't fork a new command session, this could be quicker than using sed.



    Under bash



    You can force decimal interpretation with the following syntax:



    a=000010
    printf "%08d" $((10#$a))
    00000010


    This could be useful for conversions:



    a="0a"
    printf "%04d" $((16#$a))
    0010

    a="00001010"
    printf "%04d" $((2#$a))
    0010

    a="00012"
    printf "%04d" $((8#$a))
    0010

    a="0020"
    printf "%04d" $((5#$a))
    0010

    a="0013"
    printf "%04d" $((7#$a))
    0010


    and so on...



    a="zz"
    printf "%04d" $((36#$a))
    1295






    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Aug 26 '13 at 14:54









    Michael Mrozek

    59.9k28187208




    59.9k28187208










    answered Aug 26 '13 at 7:17









    F. Hauri

    2,5791326




    2,5791326











    • b=$(echo $a | sed 's/^0*//') what exactly this step does ??
      – user43067
      Aug 26 '13 at 8:37










    • @user43067 $() generate a new command session (fork), echo $a will run in this new session, than | sed will generate a new command session to pipe to /bin/sed outer binary.
      – F. Hauri
      Aug 26 '13 at 14:40
















    • b=$(echo $a | sed 's/^0*//') what exactly this step does ??
      – user43067
      Aug 26 '13 at 8:37










    • @user43067 $() generate a new command session (fork), echo $a will run in this new session, than | sed will generate a new command session to pipe to /bin/sed outer binary.
      – F. Hauri
      Aug 26 '13 at 14:40















    b=$(echo $a | sed 's/^0*//') what exactly this step does ??
    – user43067
    Aug 26 '13 at 8:37




    b=$(echo $a | sed 's/^0*//') what exactly this step does ??
    – user43067
    Aug 26 '13 at 8:37












    @user43067 $() generate a new command session (fork), echo $a will run in this new session, than | sed will generate a new command session to pipe to /bin/sed outer binary.
    – F. Hauri
    Aug 26 '13 at 14:40




    @user43067 $() generate a new command session (fork), echo $a will run in this new session, than | sed will generate a new command session to pipe to /bin/sed outer binary.
    – F. Hauri
    Aug 26 '13 at 14:40










    up vote
    4
    down vote













    typeset -Z4 a will work with zsh or ksh.



    When interpreted as a number, In POSIX sh and printf, if there's a leading zero, it's interpreted as an octal number. So, you need to strip those 0s first:



    printf '%04dn' "$a#"$a%%[!0]*""


    Or you could use awk that doesn't have that issue:



    awk 'BEGINprintf "%04dn", ARGV[1]' "$a"





    share|improve this answer


























      up vote
      4
      down vote













      typeset -Z4 a will work with zsh or ksh.



      When interpreted as a number, In POSIX sh and printf, if there's a leading zero, it's interpreted as an octal number. So, you need to strip those 0s first:



      printf '%04dn' "$a#"$a%%[!0]*""


      Or you could use awk that doesn't have that issue:



      awk 'BEGINprintf "%04dn", ARGV[1]' "$a"





      share|improve this answer
























        up vote
        4
        down vote










        up vote
        4
        down vote









        typeset -Z4 a will work with zsh or ksh.



        When interpreted as a number, In POSIX sh and printf, if there's a leading zero, it's interpreted as an octal number. So, you need to strip those 0s first:



        printf '%04dn' "$a#"$a%%[!0]*""


        Or you could use awk that doesn't have that issue:



        awk 'BEGINprintf "%04dn", ARGV[1]' "$a"





        share|improve this answer














        typeset -Z4 a will work with zsh or ksh.



        When interpreted as a number, In POSIX sh and printf, if there's a leading zero, it's interpreted as an octal number. So, you need to strip those 0s first:



        printf '%04dn' "$a#"$a%%[!0]*""


        Or you could use awk that doesn't have that issue:



        awk 'BEGINprintf "%04dn", ARGV[1]' "$a"






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Aug 26 '13 at 11:29

























        answered Aug 26 '13 at 9:46









        Stéphane Chazelas

        294k54555898




        294k54555898




















            up vote
            4
            down vote













            You can accomplish that by using a different conversion specifier, for example the "f" specifier. From the printf manual:




            f, F



            The double argument is rounded and converted to decimal notation in
            the style [-]ddd.ddd, where the number of digits after the
            decimal-point character is equal to the precision specification. If
            the precision is missing, it is taken as 6; if the precision is
            explicitly zero, no decimal-point character appears. If a decimal
            point appears, at least one digit appears before it.




            But we don't really want a floating point representation of your number, so we must specify a precision of zero. This should do it:



            a=010
            printf "%04.0f" $a


            I'm assuming you are using Linux, but this should also work with other flavours of Unix.






            share|improve this answer




















            • Or, from man printf, u could use: printf "%04g" 010! +1, interesting way to explore too...
              – F. Hauri
              Aug 26 '13 at 14:51














            up vote
            4
            down vote













            You can accomplish that by using a different conversion specifier, for example the "f" specifier. From the printf manual:




            f, F



            The double argument is rounded and converted to decimal notation in
            the style [-]ddd.ddd, where the number of digits after the
            decimal-point character is equal to the precision specification. If
            the precision is missing, it is taken as 6; if the precision is
            explicitly zero, no decimal-point character appears. If a decimal
            point appears, at least one digit appears before it.




            But we don't really want a floating point representation of your number, so we must specify a precision of zero. This should do it:



            a=010
            printf "%04.0f" $a


            I'm assuming you are using Linux, but this should also work with other flavours of Unix.






            share|improve this answer




















            • Or, from man printf, u could use: printf "%04g" 010! +1, interesting way to explore too...
              – F. Hauri
              Aug 26 '13 at 14:51












            up vote
            4
            down vote










            up vote
            4
            down vote









            You can accomplish that by using a different conversion specifier, for example the "f" specifier. From the printf manual:




            f, F



            The double argument is rounded and converted to decimal notation in
            the style [-]ddd.ddd, where the number of digits after the
            decimal-point character is equal to the precision specification. If
            the precision is missing, it is taken as 6; if the precision is
            explicitly zero, no decimal-point character appears. If a decimal
            point appears, at least one digit appears before it.




            But we don't really want a floating point representation of your number, so we must specify a precision of zero. This should do it:



            a=010
            printf "%04.0f" $a


            I'm assuming you are using Linux, but this should also work with other flavours of Unix.






            share|improve this answer












            You can accomplish that by using a different conversion specifier, for example the "f" specifier. From the printf manual:




            f, F



            The double argument is rounded and converted to decimal notation in
            the style [-]ddd.ddd, where the number of digits after the
            decimal-point character is equal to the precision specification. If
            the precision is missing, it is taken as 6; if the precision is
            explicitly zero, no decimal-point character appears. If a decimal
            point appears, at least one digit appears before it.




            But we don't really want a floating point representation of your number, so we must specify a precision of zero. This should do it:



            a=010
            printf "%04.0f" $a


            I'm assuming you are using Linux, but this should also work with other flavours of Unix.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Aug 26 '13 at 14:28









            Hugo Vieira

            1513




            1513











            • Or, from man printf, u could use: printf "%04g" 010! +1, interesting way to explore too...
              – F. Hauri
              Aug 26 '13 at 14:51
















            • Or, from man printf, u could use: printf "%04g" 010! +1, interesting way to explore too...
              – F. Hauri
              Aug 26 '13 at 14:51















            Or, from man printf, u could use: printf "%04g" 010! +1, interesting way to explore too...
            – F. Hauri
            Aug 26 '13 at 14:51




            Or, from man printf, u could use: printf "%04g" 010! +1, interesting way to explore too...
            – F. Hauri
            Aug 26 '13 at 14:51

















             

            draft saved


            draft discarded















































             


            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f88195%2fpad-a-number-with-a-zero%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown






            Popular posts from this blog

            How to check contact read email or not when send email to Individual?

            Bahrain

            Postfix configuration issue with fips on centos 7; mailgun relay