Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
10進数を2進数に変換する簡単な方法をBashで探しています。変換する必要のある変数があります:
$ip1 $ip2 $ip3 $ip4
すべての個々の番号を見ずにこれを行う簡単な方法はありますか?
たくさんのコードを書く必要はありません。
次のように使用できますbc。
bc
echo "obase=2;$ip1" | bc
見てください