summaryrefslogtreecommitdiff
path: root/.zsh/func/baseconv
blob: 3c97468a0ed7a52c7b22dcc15446df34d0bdabd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/zsh
#
# func/baseconv
#
# zsh-based conversion between numeric bases
#
# Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
# Released under the terms of the Artistic Licence 2.0
#
# Source repository: git://git.madduck.net/etc/zsh.git
#

if [ $# -ne 3 ]; then
  echo Usage: ${0##*/} ibase obase number
  return 1
fi

typeset -li $2 var
eval ((var=${1}#${3}))
echo ${var#*\#}