summaryrefslogtreecommitdiff
path: root/scripts/hex2dec
blob: 7b66be966f794ebfd4f5c7456c70cf7fe2a77c1a (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh
(
 echo -n "ibase=16; "
 if [ x"$1" = x ]; then
  cat
 else
  echo "$1"
 fi
) | bc -q