#!/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)"