33CLI for Developers :sunglasses :
44
55[ ![ GithubCI] ( https://github.com/codingtools/cdt/workflows/GithubCI/badge.svg )] ( https://github.com/codingtools/cdt/actions?query=workflow%3AGithubCI )
6+ [ ![ GithubPublish] ( https://github.com/codingtools/cdt/actions/workflows/npmpublish.yml/badge.svg )] ( https://github.com/codingtools/cdt/actions/workflows/npmpublish.yml )
67[ ![ Codacy Badge] ( https://api.codacy.com/project/badge/Grade/82d29e2a902a4c338228d636f290d9cd )] ( https://app.codacy.com/gh/codingtools/cdt?utm_source=github.com&utm_medium=referral&utm_content=codingtools/cdt&utm_campaign=Badge_Grade_Dashboard )
78[ ![ codecov] ( https://codecov.io/gh/codingtools/cdt/branch/release%2Frelease-v0.1/graph/badge.svg )] ( https://codecov.io/gh/codingtools/cdt )
89[ ![ Version] ( https://img.shields.io/npm/v/@codingtools/cdt )] ( https://npmjs.org/package/@codingtools/cdt )
@@ -39,7 +40,7 @@ $ npm install -g @codingtools/cdt
3940$ cdt COMMAND
4041running command...
4142$ cdt (-v| --version| version)
42- @codingtools/cdt/0.7.0 darwin-x64 node-v14.3 .0
43+ @codingtools/cdt/1.0.6 darwin-arm64 node-v15.8 .0
4344$ cdt --help [COMMAND]
4445USAGE
4546 $ cdt COMMAND
@@ -52,11 +53,13 @@ USAGE
5253* [ ` cdt avro [COMMAND] ` ] ( #cdt-avro-command )
5354* [ ` cdt bundlephobia [PACKAGE] ` ] ( #cdt-bundlephobia-package )
5455* [ ` cdt commands ` ] ( #cdt-commands )
56+ * [ ` cdt cron [STRING] ` ] ( #cdt-cron-string )
5557* [ ` cdt crypto [STRING] ` ] ( #cdt-crypto-string )
5658* [ ` cdt datetime [DATE] ` ] ( #cdt-datetime-date )
5759* [ ` cdt hash [STRING] ` ] ( #cdt-hash-string )
5860* [ ` cdt help [COMMAND] ` ] ( #cdt-help-command )
5961* [ ` cdt minify [FILE] ` ] ( #cdt-minify-file )
62+ * [ ` cdt run [STRING] ` ] ( #cdt-run-string )
6063* [ ` cdt view [FILE] ` ] ( #cdt-view-file )
6164
6265## ` cdt autocomplete [SHELL] `
@@ -80,7 +83,7 @@ EXAMPLES
8083 $ cdt autocomplete --refresh-cache
8184```
8285
83- _ 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 ) _
8487
8588## ` cdt avro [COMMAND] `
8689
@@ -98,7 +101,7 @@ OPTIONS
98101 -t, --schemaType=schemaType schema type file path
99102```
100103
101- _ See code: [ src/commands/avro.ts] ( https://github.com/codingtools/cdt/blob/v0.7.0 /src/commands/avro.ts ) _
104+ _ See code: [ src/commands/avro.ts] ( https://github.com/codingtools/cdt/blob/v1.0.6 /src/commands/avro.ts ) _
102105
103106## ` cdt bundlephobia [PACKAGE] `
104107
@@ -114,7 +117,7 @@ OPTIONS
114117 -p, --packages=packages packages for which cost is required, can pass more than one separated by space
115118```
116119
117- _ See code: [ src/commands/bundlephobia.ts] ( https://github.com/codingtools/cdt/blob/v0.7.0 /src/commands/bundlephobia.ts ) _
120+ _ See code: [ src/commands/bundlephobia.ts] ( https://github.com/codingtools/cdt/blob/v1.0.6 /src/commands/bundlephobia.ts ) _
118121
119122## ` cdt commands `
120123
@@ -140,6 +143,23 @@ OPTIONS
140143
141144_ See code: [ @oclif/plugin-commands ] ( https://github.com/oclif/plugin-commands/blob/v1.3.0/src/commands/commands.ts ) _
142145
146+ ## ` cdt cron [STRING] `
147+
148+ Cron Expressions helper and scheduler
149+
150+ ```
151+ USAGE
152+ $ cdt cron [STRING]
153+
154+ OPTIONS
155+ -d, --describe Describe cron expressions into human readable descriptions
156+ -h, --help show CLI help
157+ -r, --run=run run command using cron expression
158+ -s, --string=string Cron expression
159+ ```
160+
161+ _ See code: [ src/commands/cron.ts] ( https://github.com/codingtools/cdt/blob/v1.0.6/src/commands/cron.ts ) _
162+
143163## ` cdt crypto [STRING] `
144164
145165Encryption and Decryption functionality for File/String
@@ -158,7 +178,7 @@ OPTIONS
158178 -s, --string=string string to be encrypted/decrypted
159179```
160180
161- _ See code: [ src/commands/crypto.ts] ( https://github.com/codingtools/cdt/blob/v0.7.0 /src/commands/crypto.ts ) _
181+ _ See code: [ src/commands/crypto.ts] ( https://github.com/codingtools/cdt/blob/v1.0.6 /src/commands/crypto.ts ) _
162182
163183## ` cdt datetime [DATE] `
164184
@@ -176,7 +196,7 @@ OPTIONS
176196 -z, --timezone=timezone Timezone for Datetime parsing, default: Your timezone
177197```
178198
179- _ See code: [ src/commands/datetime.ts] ( https://github.com/codingtools/cdt/blob/v0.7.0 /src/commands/datetime.ts ) _
199+ _ See code: [ src/commands/datetime.ts] ( https://github.com/codingtools/cdt/blob/v1.0.6 /src/commands/datetime.ts ) _
180200
181201## ` cdt hash [STRING] `
182202
@@ -194,7 +214,7 @@ OPTIONS
194214 -t, --type=type type of hash [SHA1(default), MD5, SHA256, SHA512, RMD160 or RIPEMD160]
195215```
196216
197- _ See code: [ src/commands/hash.ts] ( https://github.com/codingtools/cdt/blob/v0.7.0 /src/commands/hash.ts ) _
217+ _ See code: [ src/commands/hash.ts] ( https://github.com/codingtools/cdt/blob/v1.0.6 /src/commands/hash.ts ) _
198218
199219## ` cdt help [COMMAND] `
200220
@@ -228,7 +248,22 @@ OPTIONS
228248 -t, --type=type type of file to be minified, it will try to find type with extension supported: JS, HTML/HTM, CSS
229249```
230250
231- _ See code: [ src/commands/minify.ts] ( https://github.com/codingtools/cdt/blob/v0.7.0/src/commands/minify.ts ) _
251+ _ See code: [ src/commands/minify.ts] ( https://github.com/codingtools/cdt/blob/v1.0.6/src/commands/minify.ts ) _
252+
253+ ## ` cdt run [STRING] `
254+
255+ Cron Expressions helper and scheduler
256+
257+ ```
258+ USAGE
259+ $ cdt run [STRING]
260+
261+ OPTIONS
262+ -h, --help show CLI help
263+ -s, --string=string command to execute, should be compatible with your shell
264+ ```
265+
266+ _ See code: [ src/commands/run.ts] ( https://github.com/codingtools/cdt/blob/v1.0.6/src/commands/run.ts ) _
232267
233268## ` cdt view [FILE] `
234269
@@ -244,7 +279,7 @@ OPTIONS
244279 -n, --num=num no. of rows to show, default:10
245280```
246281
247- _ See code: [ src/commands/view.ts] ( https://github.com/codingtools/cdt/blob/v0.7.0 /src/commands/view.ts ) _
282+ _ See code: [ src/commands/view.ts] ( https://github.com/codingtools/cdt/blob/v1.0.6 /src/commands/view.ts ) _
248283<!-- commandsstop -->
249284
250285## Acknowledgement
0 commit comments