changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/bin/skc.lisp

changeset 680: 5f88b237ce29
child: 5e8b1855f866
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 27 Sep 2024 20:19:10 -0400
permissions: -rw-r--r--
description: added skc, fixed alien c-string functions, upgrades and fixes for rocksdb/rdb
1 ;;; skc.lisp --- Skel Client
2 
3 ;;
4 
5 ;;; Code:
6 (in-package :std-user)
7 (defpkg :bin/skc
8  (:use :cl)
9  (:nicknames :skc))
10 (in-package :bin/skc)
11 
12 (define-cli *skc-cli*
13  :name "skc"
14  :version #.(format nil "0.1.1:~A" (read-line (sb-ext:process-output (vc:run-hg-command "id" '("-i") :stream)))))
15 
16 (defmain start-skc ()
17  (with-cli (*skc-cli* opts cmds) (cli:args)
18  (do-cmd *skc-cli*)))