;;;; clip.lisp (in-package :oneliners.cli.app) (defhandler clip/handler (id . args) (ol:run-item (parse-identifier id) args :force-clip t)) (defun clip/command () (cli:make-command :name "clip" :usage " [ARG ...]" :description "attempt to copy the oneliner to the clipboard" :handler #'clip/handler))