From 29ac221c201edf33b7d07716cd6d0e24e2da377e Mon Sep 17 00:00:00 2001 From: Michiel Borkent Date: Sat, 28 Mar 2020 09:55:36 +0100 Subject: [PATCH] README --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 966f66bf..fe344315 100644 --- a/README.md +++ b/README.md @@ -1113,11 +1113,13 @@ Your command line args: (1 2 3) ### Extract single file from zip ``` clojure -;; given the following zip file created as follows: +;; Given the following: + ;; $ echo 'contents' > file ;; $ zip zipfile.zip file ;; $ rm file -;; we extract the single file from the zip using java.nio: + +;; we extract the single file from the zip archive using java.nio: (import '[java.nio.file Files FileSystems CopyOption]) (let [zip-file (io/file "zipfile.zip")