Variable: org-mobile-checksum-binary

org-mobile-checksum-binary is a customizable variable defined in org-mobile.el.gz.

Value

"/usr/bin/shasum"

Documentation

Executable used for computing checksums of agenda files.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-mobile.el.gz
(defcustom org-mobile-checksum-binary (or (executable-find "shasum")
					  (executable-find "sha1sum")
					  (executable-find "md5sum")
					  (executable-find "md5"))
  "Executable used for computing checksums of agenda files."
  :group 'org-mobile
  :type 'string)