diff options
author | Franck Cuny <franck@fcuny.net> | 2022-06-20 14:54:15 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-06-20 14:57:20 -0700 |
commit | e75728f51d08e24a6c1f1d78d94c4b5c6d6ac304 (patch) | |
tree | 4574a39c52b278319e62ffe2e9752ceaf3c15794 /home/shell | |
parent | fix(home/emacs): don't create frame for emacsclient (diff) | |
download | world-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.nix | 2 |
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"; } |