web-dev-qa-db-ja.com

Bashシェル10進数から2進数のベース2への変換

Bashで10進数を2進数に変換する簡単な方法を探しています。変換する必要がある変数があります:

$ip1 $ip2 $ip3 $ip4

すべての個々の番号を見ずにこれを行う簡単な方法はありますか?

多くのコードを書く必要はありません。

29
Daniel Del Core

bcを次のように使用できます。

echo "obase=2;$ip1" | bc

それを見る

55
codaddict

Bash組み込みコマンド(範囲0から255)で10進数を2進数に変換します。

D2B=({0..1}{0..1}{0..1}{0..1}{0..1}{0..1}{0..1}{0..1})

echo ${D2B[7]}

00000111

echo ${D2B[85]}

01010101

echo ${D2B[127]}

01111111


先行ゼロを削除するには、例えば${D2B[7]}から:

echo $((10#${D2B[7]}))

111


これにより、bash’s brace expansion00000000 00000001 00000010 ... 11111101 11111110 11111111を持つ配列が作成されます。配列D2Bの位置は、その10進数値を表します。

参照: コードの理解({0..1} {0..1} {0..1} {0..1} {0..1} {0..1} {0 .. 1} {0..1})

30
Cyrus

整数を別の基数を持つ別の表現に変換する一般的な方法(ただし、表現に数字0..9を使用するため、base <= 10のみ):

function convertIntvalToBase () # (Val Base)
{
   val=$1
   base=$2
   result=""
   while [ $val -ne 0 ] ; do
        result=$(( $val % $base ))$result #residual is next digit
        val=$(( $val / $base ))
   done
   echo -n $result
}

例えば.

convertIntvalToBase $ip1 2     # converts $ip1 into binary representation
3
Jörg Weilbier

Bashでの10進数から2進数への変換:

これにはUbuntu 14.04を使用しています。

10進数の1〜5をバイナリに変換します。

el@apollo:~$ bc <<< "obase=2;1"
1
el@apollo:~$ bc <<< "obase=2;2"
10
el@apollo:~$ bc <<< "obase=2;3"
11
el@apollo:~$ bc <<< "obase=2;4"
100
el@apollo:~$ bc <<< "obase=2;5"
101

ボーナスの例:

el@apollo:~$ bc <<< "obase=2;1024"
10000000000

el@apollo:~$ bc <<< "obase=2;2^128"
100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
2
Eric Leschinski

Bashのみを使用した10進数からバイナリへ

任意の整数は、それを使用してtiバイナリに変換できます。

touch dec2bin.bash && chmod +x "$_" && vim "$_"

そして、コピーして次を貼り付けます:

#!/bin/bash
num=$1;
dec2bin()
{
    op=2; ## Since we're converting to binary
    quo=$(( $num/ $op)); ## quotient
    rem=$(( $num% $op)); ## remainder
    array=(); ## array for putting remainder inside array
    array+=("$rem"); ## array expansion
        until [[ $quo -eq 0 ]]; do
            num=$quo; ## looping to get all remainder, untill the remainder is 0
            quo=$(( $num / $op));
            rem=$(( $num % $op));
            array+="$rem"; ## array expansion
        done
    binary=$(echo "${array[@]}" | rev); ## reversing array
    printf "$binary\n"; ## print array
}
main()
{
[[ -n ${num//[0-9]/} ]] &&
    { printf "$num is not an integer bruv!\n"; return 1;
    } || { dec2bin $num; }
}
main;

例えば:

./dec2bin.bash $var
110100100

整数を追加する必要があります!!

./dec2bin.bash 420.py
420.py is not an integer bruv!

また、別の方法 pythonを使用:ずっと遅い

python -c "print(bin(420))"
0b110100100

Bashのみを使用した16進数からバイナリへ

同様に、bashのみを使用した次のような16進数から2進数へ:

#!/usr/local/bin/bash ## For Darwin :( higher bash :)
#!/bin/bash ## Linux :)
hex=$1;
hex2bin()
{
    op=2; num=$((16#$hex));
    quo=$(( $num/ $op));
    rem=$(( $num% $op));
    array=();
    array+=("$rem");
        until [[ $quo -eq 0 ]]; do
            num=$quo;
            quo=$(( $num / $op));
            rem=$(( $num % $op));
            array+="$rem";
        done
    binary=$(echo "${array[@]}" | rev);
    printf "Binary of $1 is: $binary\n";
}
main()
{
[[ -n ${hex//[0-9,A-F,a-f]/} ]] &&
    { printf "$hex is not a hexa decimal number bruv!\n"; return 1;
    } || { hex2bin $hex; }
}
main;

例えば:

./hex2bin.bash 1aF
Binary of 1aF is: 110101111

16進数を渡す必要があります。

./hex2bin.bash XyZ
XyZ is not a hexa decimal number bruv!
0
Rakib Fiha