Function: projectile-unixy-system-p

projectile-unixy-system-p is a byte-compiled function defined in projectile.el.

Signature

(projectile-unixy-system-p)

Documentation

Check to see if unixy text utilities are installed.

Source Code

;; Defined in ~/.emacs.d/elpa/projectile-20260310.858/projectile.el
;;; Misc utility functions

(defun projectile-unixy-system-p ()
  "Check to see if unixy text utilities are installed."
  (seq-every-p
   (lambda (x) (executable-find x))
   '("grep" "cut" "uniq")))