projects
/
BK-2020-03.git
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
feature(user) Add legacy user scripts
[BK-2020-03.git]
/
user
/
bkhextobin
This page requires JavaScript to run. Use
this page
instead.
... / ...
Commit
Line
Data
1
#!/bin/bash
2
echo "type a hex number"
3
read hexNum
4
echo -n "The binary value of $hexNum="
5
echo "obase=2; ibase=16; $hexNum" | bc