2011. 9. 27. 18:39
Bash script tips and 도움말
2011. 9. 27. 18:39 in 카테고리 없음
== hex를 decimal로 출력 ==
$ echo $((0x15a))
$ echo 'ibase=16;obase=A;15A' | bc
== hex를 decimal로 출력 ==
$ echo $((0x15a))
$ echo 'ibase=16;obase=A;15A' | bc