# Scripting > Note: this is brand new! Expect limitations and changes. Get the `ciel` binary and call it with your .lisp script: ``` $ ciel script.lisp ``` (or `./script.lisp`, see below) Call built-in scripts: ``` $ ciel -s simpleHTTPserver 9000 ``` An example script: ```lisp ;; Start your script with this to access all CIEL goodies: (in-package :ciel-user) (defun hello (name) "Say hello." ;; format! prints on standard output and flushes the streams. (format! t "Hello ~a!~&" name)) ;; Access CLI args: (hello (second uiop:*command-line-arguments*)) ;; We have access to the DICT notation for hash-tables: (print "testing dict:") (print (dict :a 1 :b 2)) ;; We can run shell commands: (cmd:cmd "ls") ;; Access environment variables: (hello (os:getenv "USER")) ;; os is a nickname for uiop/os (format! t "Let's define an alias to run shell commands with '!'. This gives: ") (defalias ! #'cmd:cmd) (! "pwd") ;; In cas of an error, we can ask for a CIEL toplevel REPL: (handler-case (error "oh no") (error (c) (format! t "An error occured: ~a" c) (format! t "Here's a CIEL top level REPL: ") (sbcli::repl :noinform t))) ``` Output: ``` $ ciel script.lisp you => Hello you! "testing dict:" (dict :A 1 :B 2 ) cmd? ABOUT.org ciel ciel-core bin docs src […] Hello vindarel! Let's define an alias to run shell commands with '!'. This gives: /home/vindarel/projets/ciel ciel-user> ``` ## Command line arguments Access them with `uiop:*command-line-arguments`. This list of arguments can be modified by us (especially if you call scripts with the `-s` option). You can always check the full original list with `(uiop:command-line-arguments)`. You can use a proper command-line options parser, which is shipped with CIEL: [Clingon](https://github.com/dnaeon/clingon). This top-notch library supports: - Short and long option names support - Automatic generation of help/usage information for commands and sub-commands - Support for various kinds of options like *string*, *integer*, *boolean*, *switches*, *enums*, *list*, *counter*, *filepath*, etc. - Out of the box support for `--version` and `--help` flags - Subcommands - Support for pre-hook and post-hook actions for commands, which allows invoking functions before and after the respective handler of the command is executed - Support for Bash and Zsh shell completions - and more. ## Executable file and shebang line We can also make a CIEL file executable and run it directly, like this: ``` $ chmod +x script.lisp $ ./script.lisp ``` Add the following shebang at the beginning: ```sh #!/usr/bin/env ciel (in-package :ciel-user) ;; lisp code follows. ``` You also need to add the `ciel` binary in your path. A possibility: $ ln -s /home/path/to/ciel/bin/ciel ~/.local/bin/ciel It magically works because before LOAD-ing this Lisp file, we remove the shebang line, and load the remaining Lisp code. ## Eval and one-liners Use `--eval` or `-e` to eval some lisp code. Example: ```sh $ ciel -e "(uiop:file-exists-p \"README.org\")" /home/vindarel/projets/ciel/README.org $ ciel -e "(-> \"README.org\" (uiop:file-exists-p))" /home/vindarel/projets/ciel/README.org $ ciel -e "(-> (http:get \"https://fakestoreapi.com/products/1\") (json:read-json))" (dict "id" 1 "title" "Fjallraven - Foldsack No. 1 Backpack, Fits 15 Laptops" "price" 109.95 "description" "Your perfect pack for everyday use and walks in the forest. Stash your laptop (up to 15 inches) in the padded sleeve, your everyday" "category" "men's clothing" "image" "https://fakestoreapi.com/img/81fPKd-2AYL._AC_SL1500_.jpg" "rating" (dict "rate" 3.9 "count" 120 ) ) ``` ## Built-in scripts Call built-in scripts with `--script ` or `-s`. Call `ciel --scripts` to list the available scripts. ### Simple HTTP server ``` $ ciel -s simpleHTTPserver 9000 ``` open `http://localhost:9000` and see the list of files. See `src/scripts/simpleHTTPserver.lisp` in the CIEL repository. You can preview HTML files and have static assets under a `static/` directory. Given you have an `index.html` file: ```html Hello!

Hello CIEL!

We just served our own files.

``` The script will serve static assets under a `static/` directory. Now load a .js file as usual in your template: which can be: ~~~javascript // ciel.js alert("hello CIEL!"); ~~~ Example output: ``` $ ciel -s simpleHTTPserver 4242 Serving files on port 4242… ⤷ http://127.0.0.1:4242 [click on the index.html file] 127.0.0.1 - [2022-12-14 12:06:00] "GET / HTTP/1.1" 200 200 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:103.0) Gecko/20100101 Firefox/103.0" ``` ### Quicksearch Search for Lisp libraries on Quicklisp, Cliki and Github. see `src/scripts/quicksearch.lisp`. ```lisp $ ciel -s quicksearch color SEARCH-RESULTS: "color" ======================= Quicklisp --------- cl-colors /home/vince/quicklisp/dists/quicklisp/software/cl-colors-20180328-git/ http://beta.quicklisp.org/archive/cl-colors/2018-03-28/cl-colors-20180328-git.tgz http://quickdocs.org/cl-colors/ […] Cliki ----- colorize http://www.cliki.net/colorize Colorize is an Application for colorizing chunks of Common Lisp, Scheme, Elisp, C, C++, or Java code […] GitHub ------ colorize https://github.com/kingcons/colorize A Syntax Highlighting library cl-colors https://github.com/tpapp/cl-colors Simple color library for Common Lisp […] ``` --- Now, let us iron out the details ;)