cli-macro 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +51 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,2 +1,53 @@
1
1
  # CLIM
2
2
  CLI Macro
3
+
4
+ ## 설치
5
+ ```bash
6
+ npm install -g cli-macro
7
+ ```
8
+
9
+ ---
10
+
11
+ ## 사용법
12
+ 새 매크로 파일 생성:
13
+ ```bash
14
+ clim new mymacro
15
+ ```
16
+
17
+ 매크로 실행:
18
+ ```bash
19
+ clim run mymacro
20
+ ```
21
+
22
+ 매크로 편집:
23
+ ```bash
24
+ clim edit mymacro
25
+ ```
26
+
27
+ 매크로 파일 삭제:
28
+ ```bash
29
+ clim delete mymacro
30
+ ```
31
+
32
+ 파일 목록 보기:
33
+ ```bash
34
+ clim list
35
+ ```
36
+
37
+ ## 명령어 옵션
38
+ - `new` 또는 `n`: 새 매크로 파일 생성
39
+ - `run` 또는 `r`: 저장된 매크로 실행
40
+ - `edit` 또는 `e`: 매크로 파일 편집
41
+ - `delete` 또는 `d`: 파일 삭제
42
+ - `list` 또는 `l`: 현재 폴더의 파일 목록 보기
43
+
44
+ ## 예시
45
+ ```bash
46
+ npm install -g cli-macro
47
+ clim new backup
48
+ clim run backup
49
+ ```
50
+
51
+ ```bash
52
+ npm install -g cli macro
53
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cli-macro",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "CLI Macro",
5
5
  "keywords": [
6
6
  "CLIM",