Skip to content

Instantly share code, notes, and snippets.

@devlights
Created April 23, 2020 17:43
Show Gist options
  • Save devlights/2e131159667a07fbe4155d7895ff5ee0 to your computer and use it in GitHub Desktop.
Save devlights/2e131159667a07fbe4155d7895ff5ee0 to your computer and use it in GitHub Desktop.
bc コマンドで16進数を10進数に変換

コマンド

$ echo "obase=10;ibase=16; FFFF" | bc
65535
  • obase
    • 出力側の進数
  • ibase
    • 入力側の進数
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment