]> git.madduck.net Git - etc/zsh.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

add hex-to/from-binary conversion
authormartin f. krafft <madduck@madduck.net>
Tue, 16 Jun 2009 08:40:39 +0000 (10:40 +0200)
committermartin f. krafft <madduck@madduck.net>
Tue, 16 Jun 2009 08:40:39 +0000 (10:40 +0200)
.zsh/zshrc/30_aliases

index 1f5f0a07963fb6a622bf9515334a1160334f1364..f206c8c8bfeaf777a6f4ebef5ea4b54746376b7e 100644 (file)
@@ -122,7 +122,9 @@ alias d2b='baseconv 10 2'
 alias d2h='baseconv 10 16'
 alias h2d='baseconv 16 10'
 alias d2o='baseconv 10 8'
 alias d2h='baseconv 10 16'
 alias h2d='baseconv 16 10'
 alias d2o='baseconv 10 8'
-alias o2d='baseconv 8 10'
+alias d2o='baseconv 10 8'
+alias h2b='baseconv 16 2'
+alias b2h='baseconv 2 16'
 
 alias sendmail=/usr/sbin/sendmail
 
 
 alias sendmail=/usr/sbin/sendmail