Commit 8778fcc

Anton Golub <antongolub@antongolub.com>
2024-07-06 12:04:41
docs: mention `cwd` option in man (#868)
1 parent 2d8dcbd
man/zx.1
@@ -1,5 +1,5 @@
 .\" Manpage for zx.
-.TH man 8 "12 May 2024" "8.x" "zx man page"
+.TH man 8 "06 Jul 2024" "8.x" "zx man page"
 .SH NAME
 zx \- the zx CLI
 .SH DESCRIPTION
@@ -7,12 +7,14 @@ A tool for writing better scripts.
 .SH SYNOPSIS
 .SS zx\fR [\fIOPTIONS\fR]  \fIURI\fR
 .SH OPTIONS
+.SS --cwd
+set current directory
 .SS --quiet
-don't echo commands
+suppress any outputs
 .SS --verbose
-Enables verbose mode
+enables verbose mode
 .SS --shell=<path>
-Sets the shell to use
+set the shell to use
 .SS --prefix=<command>
 prefix all commands
 .SS --postfix=<command>
@@ -26,7 +28,7 @@ start repl
 .SS --version, -v
 print current zx version
 .SS --help, -h
-Print command help and options
+print command help and options
 .SH EXAMPLES
 .TP
 .I zx --verbose script.js
package-lock.json
@@ -1,12 +1,12 @@
 {
   "name": "zx",
-  "version": "8.1.4",
+  "version": "8.1.5",
   "lockfileVersion": 3,
   "requires": true,
   "packages": {
     "": {
       "name": "zx",
-      "version": "8.1.4",
+      "version": "8.1.5",
       "license": "Apache-2.0",
       "bin": {
         "zx": "build/cli.js"
package.json
@@ -1,6 +1,6 @@
 {
   "name": "zx",
-  "version": "8.1.4",
+  "version": "8.1.5",
   "description": "A tool for writing better scripts",
   "type": "module",
   "main": "./build/index.cjs",