-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommand-line.lisp
executable file
·55 lines (47 loc) · 1.3 KB
/
command-line.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
;#!/usr/local/bin/sbcl --script
;;;; Hey, Emacs, this is a -*- Mode: Lisp; Syntax: Common-Lisp -*- file!
;;;;
;;;; Lisp...not just beautiful, but strangely beautiful.
;;;; -- Paul Graham
;;;;
;;;; Name: command-line.lisp
;;;;
;;;; Started: Tue Aug 23 23:53:56 2011
;;;; Modifications:
;;;;
;;;; Purpose:
;;;;
;;;;
;;;;
;;;; Calling Sequence:
;;;;
;;;;
;;;; Inputs:
;;;;
;;;; Outputs:
;;;;
;;;; Example:
;;;;
;;;; Notes:
;;;;
;;;;
(load "/Users/dsletten/lisp/packages/shell")
(defpackage :command-line
(:use :common-lisp :shell)
(:export :defscript :enforce-args :read-command-line-args))
(in-package :command-line)
(defun enforce-args (name args &rest param-names)
(if (check-args args param-names)
t
(print-usage name param-names)))
(defun check-args (args param-names)
(= (length args) (length param-names)))
(defun print-usage (name param-names)
(format *error-output* "Usage:~%~A~{ <~A>~}~%" name param-names))
(defun read-command-line-args ()
(mapcar #'read-from-string (get-args)))
(defmacro defscript (script (&rest args) &body body)
(let ((quoted-args (mapcar #'(lambda (arg) (list 'quote arg)) args)))
`(when (enforce-args ',script (get-args) ,@quoted-args)
(destructuring-bind (,@args) (read-command-line-args)
,@body))))