From 82abadcecc7534b4847238ee2a977f33256b0439 Mon Sep 17 00:00:00 2001 From: George Abbott Date: Sun, 26 Jan 2025 11:37:22 +0000 Subject: sh --- scripts/sh/cdabbr | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 scripts/sh/cdabbr (limited to 'scripts/sh/cdabbr') diff --git a/scripts/sh/cdabbr b/scripts/sh/cdabbr new file mode 100755 index 0000000..de5dadd --- /dev/null +++ b/scripts/sh/cdabbr @@ -0,0 +1,14 @@ +#!/bin/sh +# cdabbr :: opens the `cdabbr` document for editing and reloads abbreviations +# cdabbr ls :: cats out the document +# cdabbr :: + +[ -z "$EDITOR" ] && echo "EDITOR not set" && exit + +[ "$1" = "ls" ] && cat "$HOME/cdabbr" && exit 0 + +$EDITOR "$HOME/cdabbr" + +while read a c ; do + alias "cd$a"="cd $c" +done <<< "$(cat "$HOME"/cdabbr)" -- cgit v1.2.1