Skip to content

Instantly share code, notes, and snippets.

@pugna0
Forked from ffevotte/gist:9345586
Created September 21, 2018 09:43
Show Gist options
  • Save pugna0/be051aee9a50361e54b5e9d1ca28e76b to your computer and use it in GitHub Desktop.
Save pugna0/be051aee9a50361e54b5e9d1ca28e76b to your computer and use it in GitHub Desktop.
(defun source (filename)
"Update environment variables from a shell source file."
(interactive "fSource file: ")
(message "Sourcing environment from `%s'..." filename)
(with-temp-buffer
(shell-command (format "diff -u <(true; export) <(source %s; export)" filename) '(4))
(let ((envvar-re "declare -x \\([^=]+\\)=\\(.*\\)$"))
;; Remove environment variables
(while (search-forward-regexp (concat "^-" envvar-re) nil t)
(let ((var (match-string 1)))
(message "%s" (prin1-to-string `(setenv ,var nil)))
(setenv var nil)))
;; Update environment variables
(goto-char (point-min))
(while (search-forward-regexp (concat "^+" envvar-re) nil t)
(let ((var (match-string 1))
(value (read (match-string 2))))
(message "%s" (prin1-to-string `(setenv ,var ,value)))
(setenv var value)))))
(message "Sourcing environment from `%s'... done." filename))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment