Skip to content

Commit 355feac

Browse files
committed
1.0.2
1 parent 158020f commit 355feac

File tree

3 files changed

+34
-17
lines changed

3 files changed

+34
-17
lines changed

README.md

Lines changed: 31 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ $ npm install -g @codingtools/cdt
4040
$ cdt COMMAND
4141
running command...
4242
$ cdt (-v|--version|version)
43-
@codingtools/cdt/1.0.1 darwin-arm64 node-v15.8.0
43+
@codingtools/cdt/1.0.2 darwin-arm64 node-v15.8.0
4444
$ cdt --help [COMMAND]
4545
USAGE
4646
$ cdt COMMAND
@@ -59,6 +59,7 @@ USAGE
5959
* [`cdt hash [STRING]`](#cdt-hash-string)
6060
* [`cdt help [COMMAND]`](#cdt-help-command)
6161
* [`cdt minify [FILE]`](#cdt-minify-file)
62+
* [`cdt run [STRING]`](#cdt-run-string)
6263
* [`cdt view [FILE]`](#cdt-view-file)
6364

6465
## `cdt autocomplete [SHELL]`
@@ -82,7 +83,7 @@ EXAMPLES
8283
$ cdt autocomplete --refresh-cache
8384
```
8485

85-
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v0.2.0/src/commands/autocomplete/index.ts)_
86+
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v0.3.0/src/commands/autocomplete/index.ts)_
8687

8788
## `cdt avro [COMMAND]`
8889

@@ -100,7 +101,7 @@ OPTIONS
100101
-t, --schemaType=schemaType schema type file path
101102
```
102103

103-
_See code: [src/commands/avro.ts](https://github.com/codingtools/cdt/blob/v1.0.1/src/commands/avro.ts)_
104+
_See code: [src/commands/avro.ts](https://github.com/codingtools/cdt/blob/v1.0.2/src/commands/avro.ts)_
104105

105106
## `cdt bundlephobia [PACKAGE]`
106107

@@ -116,7 +117,7 @@ OPTIONS
116117
-p, --packages=packages packages for which cost is required, can pass more than one separated by space
117118
```
118119

119-
_See code: [src/commands/bundlephobia.ts](https://github.com/codingtools/cdt/blob/v1.0.1/src/commands/bundlephobia.ts)_
120+
_See code: [src/commands/bundlephobia.ts](https://github.com/codingtools/cdt/blob/v1.0.2/src/commands/bundlephobia.ts)_
120121

121122
## `cdt commands`
122123

@@ -151,13 +152,14 @@ USAGE
151152
$ cdt cron [STRING]
152153
153154
OPTIONS
154-
-d, --describe Describe cron expressions into human readable descriptions
155-
-h, --help show CLI help
156-
-r, --run run command using cron expression
157-
-s, --string=string Cron expression
155+
-c, --command=command unix command to be executed
156+
-d, --describe Describe cron expressions into human readable descriptions
157+
-h, --help show CLI help
158+
-r, --run run command using cron expression
159+
-s, --string=string Cron expression
158160
```
159161

160-
_See code: [src/commands/cron.ts](https://github.com/codingtools/cdt/blob/v1.0.1/src/commands/cron.ts)_
162+
_See code: [src/commands/cron.ts](https://github.com/codingtools/cdt/blob/v1.0.2/src/commands/cron.ts)_
161163

162164
## `cdt crypto [STRING]`
163165

@@ -177,7 +179,7 @@ OPTIONS
177179
-s, --string=string string to be encrypted/decrypted
178180
```
179181

180-
_See code: [src/commands/crypto.ts](https://github.com/codingtools/cdt/blob/v1.0.1/src/commands/crypto.ts)_
182+
_See code: [src/commands/crypto.ts](https://github.com/codingtools/cdt/blob/v1.0.2/src/commands/crypto.ts)_
181183

182184
## `cdt datetime [DATE]`
183185

@@ -195,7 +197,7 @@ OPTIONS
195197
-z, --timezone=timezone Timezone for Datetime parsing, default: Your timezone
196198
```
197199

198-
_See code: [src/commands/datetime.ts](https://github.com/codingtools/cdt/blob/v1.0.1/src/commands/datetime.ts)_
200+
_See code: [src/commands/datetime.ts](https://github.com/codingtools/cdt/blob/v1.0.2/src/commands/datetime.ts)_
199201

200202
## `cdt hash [STRING]`
201203

@@ -213,7 +215,7 @@ OPTIONS
213215
-t, --type=type type of hash [SHA1(default), MD5, SHA256, SHA512, RMD160 or RIPEMD160]
214216
```
215217

216-
_See code: [src/commands/hash.ts](https://github.com/codingtools/cdt/blob/v1.0.1/src/commands/hash.ts)_
218+
_See code: [src/commands/hash.ts](https://github.com/codingtools/cdt/blob/v1.0.2/src/commands/hash.ts)_
217219

218220
## `cdt help [COMMAND]`
219221

@@ -247,7 +249,22 @@ OPTIONS
247249
-t, --type=type type of file to be minified, it will try to find type with extension supported: JS, HTML/HTM, CSS
248250
```
249251

250-
_See code: [src/commands/minify.ts](https://github.com/codingtools/cdt/blob/v1.0.1/src/commands/minify.ts)_
252+
_See code: [src/commands/minify.ts](https://github.com/codingtools/cdt/blob/v1.0.2/src/commands/minify.ts)_
253+
254+
## `cdt run [STRING]`
255+
256+
Cron Expressions helper and scheduler
257+
258+
```
259+
USAGE
260+
$ cdt run [STRING]
261+
262+
OPTIONS
263+
-h, --help show CLI help
264+
-s, --string=string unix command
265+
```
266+
267+
_See code: [src/commands/run.ts](https://github.com/codingtools/cdt/blob/v1.0.2/src/commands/run.ts)_
251268

252269
## `cdt view [FILE]`
253270

@@ -263,7 +280,7 @@ OPTIONS
263280
-n, --num=num no. of rows to show, default:10
264281
```
265282

266-
_See code: [src/commands/view.ts](https://github.com/codingtools/cdt/blob/v1.0.1/src/commands/view.ts)_
283+
_See code: [src/commands/view.ts](https://github.com/codingtools/cdt/blob/v1.0.2/src/commands/view.ts)_
267284
<!-- commandsstop -->
268285

269286
## Acknowledgement

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@codingtools/cdt",
33
"description": "CLI for Developers",
4-
"version": "1.0.1",
4+
"version": "1.0.2",
55
"author": "Ashish Patel @ashishpatel0720",
66
"bin": {
77
"cdt": "bin/run"

0 commit comments

Comments
 (0)