diff --git a/.scripts/einfo b/.scripts/einfo new file mode 100755 index 00000000..a8df617d --- /dev/null +++ b/.scripts/einfo @@ -0,0 +1,14 @@ +#!/bin/sh + +check() +{ + for i ; do + if ! command -v $i >/dev/null 2>&1; then + echo "'$i' not found in PATH. Exiting." >&2 + exit 1 + fi + done +} +check emacs realpath + +emacs --eval '(progn (info "'"$(realpath "$1")"'")(delete-other-windows))'