about summary refs log tree commit diff
path: root/home/shell
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-06-20 14:54:15 -0700
committerFranck Cuny <franck@fcuny.net>2022-06-20 14:57:20 -0700
commite75728f51d08e24a6c1f1d78d94c4b5c6d6ac304 (patch)
tree4574a39c52b278319e62ffe2e9752ceaf3c15794 /home/shell
parentfix(home/emacs): don't create frame for emacsclient (diff)
downloadworld-e75728f51d08e24a6c1f1d78d94c4b5c6d6ac304.tar.gz
feat(home/shell): add aliases for ip2int and int2ip
Change-Id: I309e378a9cd1871fc84b395a6e077757106d2628
Reviewed-on: https://cl.fcuny.net/c/world/+/463
Tested-by: CI
Reviewed-by: Franck Cuny <franck@fcuny.net>
Diffstat (limited to '')
-rw-r--r--home/shell/aliases.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/home/shell/aliases.nix b/home/shell/aliases.nix
index 003f253..2d1f95c 100644
--- a/home/shell/aliases.nix
+++ b/home/shell/aliases.nix
@@ -1,4 +1,6 @@
 {
   ll = "ls -l --color=auto";
   lt = "ls -ltrh --color=auto";
+  ip2int = "ipconverter ip2int";
+  int2ip = "ipconverter int2ip";
 }