mk_semi_lattice 0.4.6 → 0.4.7
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.
- checksums.yaml +4 -4
- data/lib/abbrev_checker/abbrev_check.rb +3 -3
- data/lib/abbrev_checker/abbrev_sample.tgz +0 -0
- data/lib/abbrev_checker/abbrev_yamls/edit_short_cut/dir_tree.yaml +13 -0
- data/lib/abbrev_checker/abbrev_yamls/key_char/dir_tree.yaml +20 -0
- data/lib/mk_semi_lattice/version.rb +1 -1
- data/lib/mk_stack/mk_stack.rb +17 -12
- data/lib/voca_buil/multi_check.rb +18 -12
- metadata +5 -7
- data/lib/abbrev_checker/abbrev_yamls/.semi_lattice/icons/document.png +0 -0
- data/lib/abbrev_checker/abbrev_yamls/.semi_lattice/icons/folder.png +0 -0
- data/lib/abbrev_checker/abbrev_yamls/.semi_lattice/semi_lattice.yaml +0 -304
- data/lib/abbrev_checker/abbrev_yamls/command_tree_node_edge.yaml +0 -174
- /data/lib/abbrev_checker/abbrev_yamls/{command_tree.yaml → command/dir_tree.yaml} +0 -0
- /data/lib/abbrev_checker/abbrev_yamls/{initialism_tree.yaml → initialism/dir_tree.yaml} +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 73c951dc8aa9c65f917a599ae454a14f3e40460c0e7b8f0f28f094715a1eb3d5
|
|
4
|
+
data.tar.gz: 8438bbdb21808ff6d4ac7dbaea8c8871ce831fa4554fa4fea6f2ec5aa0f79592
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e06dfb0d5f70c855055acb2499847a4fedb4344b2c1e991b5acb3c2f07b12fb0805c0612eb0b7b887dd7f57584718d449d8e8d1d196dbdde95f2f847601d50e4
|
|
7
|
+
data.tar.gz: fa615d8465e981c22930e99f73beadcaaf8864be2bf9e1fe011cad8ac1846053abd732aff49fdb3611a7f1614e8742c6338c08228c083377291b93fcdb92b898
|
|
@@ -84,9 +84,9 @@ module AbbrevCheck
|
|
|
84
84
|
end
|
|
85
85
|
|
|
86
86
|
class InstallCheckSample < VocaBuil::InstallCheckSample
|
|
87
|
-
def initialize(tgz_file =
|
|
88
|
-
|
|
89
|
-
|
|
87
|
+
def initialize(tgz_file = nil)
|
|
88
|
+
tgz_file ||= File.join(File.dirname(__FILE__), 'abbrev_sample.tgz')
|
|
89
|
+
super(tgz_file)
|
|
90
90
|
end
|
|
91
91
|
end
|
|
92
92
|
end
|
|
Binary file
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
#key name:
|
|
3
|
+
~=tilde:
|
|
4
|
+
`=back quote:
|
|
5
|
+
'\#'=sharp:
|
|
6
|
+
\=back slash:
|
|
7
|
+
/=slash:
|
|
8
|
+
$=dollar:
|
|
9
|
+
%=percent:
|
|
10
|
+
^=hat:
|
|
11
|
+
&=ampersand:
|
|
12
|
+
*=asterisk:
|
|
13
|
+
-=hyphen:
|
|
14
|
+
()=round bracket=丸括弧:
|
|
15
|
+
[]=square bracket=鉤括弧:
|
|
16
|
+
{}=curly bracket=波括弧:
|
|
17
|
+
':'=colon:
|
|
18
|
+
;=semicolon:
|
|
19
|
+
'=single quote:
|
|
20
|
+
"=double quote:
|
data/lib/mk_stack/mk_stack.rb
CHANGED
|
@@ -12,18 +12,23 @@ module StackOperations
|
|
|
12
12
|
def initialize(argv)
|
|
13
13
|
@options = { flatten: false, nest: false, dryrun: true, reverse: false, empty: false, no_dir_move: false }
|
|
14
14
|
@args = []
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
15
|
+
begin
|
|
16
|
+
OptionParser.new do |opts|
|
|
17
|
+
opts.banner = "Usage: hc stack [options]"
|
|
18
|
+
opts.on('-o ORDINAL', '--ordinal=ORDINAL', 'Add ordinal number') { |ord| @options[:ordinal] = ord }
|
|
19
|
+
opts.on('-d', '--dryrun', 'Dry run (do not move or create anything)') { @options[:dryrun] = true }
|
|
20
|
+
opts.on('-D', 'Do not move directories (only move files)') { @options[:no_dir_move] = true }
|
|
21
|
+
opts.on('-A', 'Do not move hidden files and directories') { @options[:no_hidden] = true }
|
|
22
|
+
opts.on('-c', '--create', 'Create (empty) stack only') { @options[:empty] = true }
|
|
23
|
+
opts.on('-e', '--exec', 'Execute stack making') { @options[:dryrun] = false }
|
|
24
|
+
opts.on('-f', '--flatten', 'Flatten stacks') { @options[:flatten] = true }
|
|
25
|
+
opts.on('-n', '--nest', 'Nest stacks by _yymmdd') { @options[:nest] = true }
|
|
26
|
+
opts.on('-r', '--reverse', 'Reverse _yymmdd order for nest') { @options[:reverse] = true }
|
|
27
|
+
end.parse!(argv)
|
|
28
|
+
rescue OptionParser::InvalidOption => e
|
|
29
|
+
puts "Error: #{e.message}"
|
|
30
|
+
exit 1
|
|
31
|
+
end
|
|
27
32
|
@args = argv
|
|
28
33
|
end
|
|
29
34
|
end
|
|
@@ -217,8 +217,16 @@ module VocaBuil
|
|
|
217
217
|
def parse_word_file(filepath)
|
|
218
218
|
lines = File.readlines(filepath)
|
|
219
219
|
words = lines[1..-1].each_with_object([]) do |line, arr|
|
|
220
|
-
|
|
221
|
-
|
|
220
|
+
# エスケープされた'#'は一時的に置換
|
|
221
|
+
if line.include?("\\#")
|
|
222
|
+
line = line.gsub("\\#", "__ESCAPED_HASH__")
|
|
223
|
+
line = line.split('#', 2)[0]
|
|
224
|
+
next if line.strip == ''
|
|
225
|
+
line = line.gsub('__ESCAPED_HASH__', '#')
|
|
226
|
+
else
|
|
227
|
+
line = line.split('#', 2)[0]
|
|
228
|
+
next if line.strip == ''
|
|
229
|
+
end
|
|
222
230
|
line_strip = if line.strip[0] == ':'
|
|
223
231
|
line.strip[1..-2]
|
|
224
232
|
else
|
|
@@ -227,7 +235,7 @@ module VocaBuil
|
|
|
227
235
|
tmp = line_strip.split("=")
|
|
228
236
|
arr << (@options[:reverse] ? tmp.reverse : tmp)
|
|
229
237
|
end
|
|
230
|
-
words
|
|
238
|
+
words
|
|
231
239
|
end
|
|
232
240
|
|
|
233
241
|
def shuffle_words(words, w_num)
|
|
@@ -345,20 +353,18 @@ module VocaBuil
|
|
|
345
353
|
end
|
|
346
354
|
|
|
347
355
|
class InstallCheckSample
|
|
348
|
-
def initialize(
|
|
349
|
-
@
|
|
356
|
+
def initialize(tgz_file = nil)
|
|
357
|
+
@tgz_file = tgz_file || File.join(__dir__, 'etymological_builder_check_sample.tgz')
|
|
350
358
|
end
|
|
351
359
|
|
|
352
360
|
def run
|
|
353
|
-
|
|
354
|
-
puts "#{@
|
|
361
|
+
unless File.exist?(@tgz_file)
|
|
362
|
+
puts "#{@tgz_file} not found.".red
|
|
355
363
|
return
|
|
356
364
|
end
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
puts "Extraction complete.".green
|
|
361
|
-
end
|
|
365
|
+
puts "Extracting #{@tgz_file} to current directory...".green
|
|
366
|
+
system("tar", "xzf", @tgz_file)
|
|
367
|
+
puts "Extraction complete.".green
|
|
362
368
|
end
|
|
363
369
|
end
|
|
364
370
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mk_semi_lattice
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shigeto R. Nishitani
|
|
@@ -125,12 +125,10 @@ files:
|
|
|
125
125
|
- lib/.semi_lattice/icons/folder.png
|
|
126
126
|
- lib/abbrev_checker/abbrev_check.rb
|
|
127
127
|
- lib/abbrev_checker/abbrev_sample.tgz
|
|
128
|
-
- lib/abbrev_checker/abbrev_yamls
|
|
129
|
-
- lib/abbrev_checker/abbrev_yamls
|
|
130
|
-
- lib/abbrev_checker/abbrev_yamls
|
|
131
|
-
- lib/abbrev_checker/abbrev_yamls/
|
|
132
|
-
- lib/abbrev_checker/abbrev_yamls/command_tree_node_edge.yaml
|
|
133
|
-
- lib/abbrev_checker/abbrev_yamls/initialism_tree.yaml
|
|
128
|
+
- lib/abbrev_checker/abbrev_yamls/command/dir_tree.yaml
|
|
129
|
+
- lib/abbrev_checker/abbrev_yamls/edit_short_cut/dir_tree.yaml
|
|
130
|
+
- lib/abbrev_checker/abbrev_yamls/initialism/dir_tree.yaml
|
|
131
|
+
- lib/abbrev_checker/abbrev_yamls/key_char/dir_tree.yaml
|
|
134
132
|
- lib/abbrev_checker/docs/abbrev_checker.key
|
|
135
133
|
- lib/abbrev_checker/docs/abbrev_checker/abbrev_checker.001.png
|
|
136
134
|
- lib/abbrev_checker/docs/abbrev_checker/abbrev_checker.002.png
|
|
Binary file
|
|
Binary file
|
|
@@ -1,304 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
:nodes:
|
|
3
|
-
- :id: 1
|
|
4
|
-
:name: file=file=ファイル操作
|
|
5
|
-
:type: dir
|
|
6
|
-
:file_path: "."
|
|
7
|
-
:icon_path:
|
|
8
|
-
:x: 74
|
|
9
|
-
:y: 211
|
|
10
|
-
:color: green
|
|
11
|
-
:fixed: true
|
|
12
|
-
- :id: 2
|
|
13
|
-
:name: ls=list=cwdのファイル,dirの表示
|
|
14
|
-
:type: dir
|
|
15
|
-
:file_path: "./ls=list=cwdのファイル,dirの表示"
|
|
16
|
-
:icon_path:
|
|
17
|
-
:x: 174
|
|
18
|
-
:y: 251
|
|
19
|
-
:color: green
|
|
20
|
-
:fixed: true
|
|
21
|
-
- :id: 3
|
|
22
|
-
:name: ls -lat=list long all time
|
|
23
|
-
:type: file
|
|
24
|
-
:file_path: "./ls=list=cwdのファイル,dirの表示/ls -lat=list long all time"
|
|
25
|
-
:icon_path:
|
|
26
|
-
:x: 208
|
|
27
|
-
:y: 273
|
|
28
|
-
:color: green
|
|
29
|
-
:fixed: true
|
|
30
|
-
- :id: 4
|
|
31
|
-
:name: mv=move=ファイルの移動
|
|
32
|
-
:type: file
|
|
33
|
-
:file_path: "./mv=move=ファイルの移動"
|
|
34
|
-
:icon_path:
|
|
35
|
-
:x: 168
|
|
36
|
-
:y: 298
|
|
37
|
-
:color: green
|
|
38
|
-
:fixed: true
|
|
39
|
-
- :id: 5
|
|
40
|
-
:name: cp=copy=ファイルの複製
|
|
41
|
-
:type: file
|
|
42
|
-
:file_path: "./cp=copy=ファイルの複製"
|
|
43
|
-
:icon_path:
|
|
44
|
-
:x: 166
|
|
45
|
-
:y: 321
|
|
46
|
-
:color: green
|
|
47
|
-
:fixed: true
|
|
48
|
-
- :id: 6
|
|
49
|
-
:name: rm=remove=ファイルの削除
|
|
50
|
-
:type: file
|
|
51
|
-
:file_path: "./rm=remove=ファイルの削除"
|
|
52
|
-
:icon_path:
|
|
53
|
-
:x: 165
|
|
54
|
-
:y: 347
|
|
55
|
-
:color: green
|
|
56
|
-
:fixed: true
|
|
57
|
-
- :id: 7
|
|
58
|
-
:name: cat=catenate=ファイルの中身を出力
|
|
59
|
-
:type: file
|
|
60
|
-
:file_path: "./cat=catenate=ファイルの中身を出力"
|
|
61
|
-
:icon_path:
|
|
62
|
-
:x: 80
|
|
63
|
-
:y: 381
|
|
64
|
-
:color: green
|
|
65
|
-
:fixed: true
|
|
66
|
-
- :id: 8
|
|
67
|
-
:name: dir=directory=フォルダ
|
|
68
|
-
:type: dir
|
|
69
|
-
:file_path: "../dir=directory=フォルダ"
|
|
70
|
-
:icon_path:
|
|
71
|
-
:x: 425
|
|
72
|
-
:y: 88
|
|
73
|
-
:color: green
|
|
74
|
-
:fixed: true
|
|
75
|
-
- :id: 9
|
|
76
|
-
:name: pwd=print working directory=cwd PATHを表示
|
|
77
|
-
:type: dir
|
|
78
|
-
:file_path: "../dir=directory=フォルダ/pwd=print working directory=cwd PATHを表示"
|
|
79
|
-
:icon_path:
|
|
80
|
-
:x: 351
|
|
81
|
-
:y: 36
|
|
82
|
-
:color: green
|
|
83
|
-
:fixed: true
|
|
84
|
-
- :id: 10
|
|
85
|
-
:name: mkdir=make directory=dir作成
|
|
86
|
-
:type: file
|
|
87
|
-
:file_path: "../dir=directory=フォルダ/pwd=print working directory=cwd PATHを表示/mkdir=make
|
|
88
|
-
directory=dir作成"
|
|
89
|
-
:icon_path:
|
|
90
|
-
:x: 414
|
|
91
|
-
:y: 137
|
|
92
|
-
:color: green
|
|
93
|
-
:fixed: true
|
|
94
|
-
- :id: 11
|
|
95
|
-
:name: rm -rf=remove recursively forcefully=PATHを再帰的で強制的に削除
|
|
96
|
-
:type: file
|
|
97
|
-
:file_path: "../dir=directory=フォルダ/rm -rf=remove recursively forcefully=PATHを再帰的で強制的に削除"
|
|
98
|
-
:icon_path:
|
|
99
|
-
:x: 468
|
|
100
|
-
:y: 104
|
|
101
|
-
:color: green
|
|
102
|
-
:fixed: true
|
|
103
|
-
- :id: 12
|
|
104
|
-
:name: cwd=current working directory=ファイル操作をしているPATH,基準となる場所
|
|
105
|
-
:type: file
|
|
106
|
-
:file_path: "../dir=directory=フォルダ/cwd=current working directory=ファイル操作をしているPATH,基準となる場所"
|
|
107
|
-
:icon_path:
|
|
108
|
-
:x: 314
|
|
109
|
-
:y: 18
|
|
110
|
-
:color: green
|
|
111
|
-
:fixed: true
|
|
112
|
-
- :id: 13
|
|
113
|
-
:name: cd=change directory=cwdの移動
|
|
114
|
-
:type: file
|
|
115
|
-
:file_path: "../dir=directory=フォルダ/cd=change directory=cwdの移動"
|
|
116
|
-
:icon_path:
|
|
117
|
-
:x: 418
|
|
118
|
-
:y: 167
|
|
119
|
-
:color: green
|
|
120
|
-
:fixed: true
|
|
121
|
-
- :id: 14
|
|
122
|
-
:name: tree=tree=ディレクトリのツリー表示
|
|
123
|
-
:type: file
|
|
124
|
-
:file_path: "../dir=directory=フォルダ/tree=tree=ディレクトリのツリー表示"
|
|
125
|
-
:icon_path:
|
|
126
|
-
:x: 340
|
|
127
|
-
:y: 193
|
|
128
|
-
:color: green
|
|
129
|
-
:fixed: true
|
|
130
|
-
- :id: 15
|
|
131
|
-
:name: path=path=パス,小径
|
|
132
|
-
:type: dir
|
|
133
|
-
:file_path: "../path=path=パス,小径"
|
|
134
|
-
:icon_path:
|
|
135
|
-
:x: 70
|
|
136
|
-
:y: 33
|
|
137
|
-
:color: green
|
|
138
|
-
:fixed: true
|
|
139
|
-
- :id: 16
|
|
140
|
-
:name: full_path=full path=絶対パス
|
|
141
|
-
:type: file
|
|
142
|
-
:file_path: "../path=path=パス,小径/full_path=full path=絶対パス"
|
|
143
|
-
:icon_path:
|
|
144
|
-
:x: 97
|
|
145
|
-
:y: 52
|
|
146
|
-
:color: green
|
|
147
|
-
:fixed: true
|
|
148
|
-
- :id: 17
|
|
149
|
-
:name: rel_path=relative path=相対パス
|
|
150
|
-
:type: file
|
|
151
|
-
:file_path: "../path=path=パス,小径/rel_path=relative path=相対パス"
|
|
152
|
-
:icon_path:
|
|
153
|
-
:x: 95
|
|
154
|
-
:y: 76
|
|
155
|
-
:color: green
|
|
156
|
-
:fixed: true
|
|
157
|
-
- :id: 18
|
|
158
|
-
:name: c-keys=controll-keys=ファイル編集のkeyバインド
|
|
159
|
-
:type: dir
|
|
160
|
-
:file_path: "../c-keys=controll-keys=ファイル編集のkeyバインド"
|
|
161
|
-
:icon_path:
|
|
162
|
-
:x: 403
|
|
163
|
-
:y: 412
|
|
164
|
-
:color: green
|
|
165
|
-
:fixed: true
|
|
166
|
-
- :id: 19
|
|
167
|
-
:name: c-a=ahead=行頭へ移動
|
|
168
|
-
:type: file
|
|
169
|
-
:file_path: "../c-keys=controll-keys=ファイル編集のkeyバインド/c-a=ahead=行頭へ移動"
|
|
170
|
-
:icon_path:
|
|
171
|
-
:x: 198
|
|
172
|
-
:y: 464
|
|
173
|
-
:color: green
|
|
174
|
-
:fixed: true
|
|
175
|
-
- :id: 20
|
|
176
|
-
:name: c-e=end=行末へ移動
|
|
177
|
-
:type: file
|
|
178
|
-
:file_path: "../c-keys=controll-keys=ファイル編集のkeyバインド/c-e=end=行末へ移動"
|
|
179
|
-
:icon_path:
|
|
180
|
-
:x: 572
|
|
181
|
-
:y: 454
|
|
182
|
-
:color: green
|
|
183
|
-
:fixed: true
|
|
184
|
-
- :id: 21
|
|
185
|
-
:name: c-p=previous=前行へ移動
|
|
186
|
-
:type: file
|
|
187
|
-
:file_path: "../c-keys=controll-keys=ファイル編集のkeyバインド/c-p=previous=前行へ移動"
|
|
188
|
-
:icon_path:
|
|
189
|
-
:x: 401
|
|
190
|
-
:y: 344
|
|
191
|
-
:color: green
|
|
192
|
-
:fixed: true
|
|
193
|
-
- :id: 22
|
|
194
|
-
:name: c-n=next=次行へ移動
|
|
195
|
-
:type: file
|
|
196
|
-
:file_path: "../c-keys=controll-keys=ファイル編集のkeyバインド/c-n=next=次行へ移動"
|
|
197
|
-
:icon_path:
|
|
198
|
-
:x: 403
|
|
199
|
-
:y: 475
|
|
200
|
-
:color: green
|
|
201
|
-
:fixed: true
|
|
202
|
-
- :id: 23
|
|
203
|
-
:name: c-f=forward=一字進む
|
|
204
|
-
:type: file
|
|
205
|
-
:file_path: "../c-keys=controll-keys=ファイル編集のkeyバインド/c-f=forward=一字進む"
|
|
206
|
-
:icon_path:
|
|
207
|
-
:x: 272
|
|
208
|
-
:y: 444
|
|
209
|
-
:color: green
|
|
210
|
-
:fixed: true
|
|
211
|
-
- :id: 24
|
|
212
|
-
:name: c-b=backward=一字戻る
|
|
213
|
-
:type: file
|
|
214
|
-
:file_path: "../c-keys=controll-keys=ファイル編集のkeyバインド/c-b=backward=一字戻る"
|
|
215
|
-
:icon_path:
|
|
216
|
-
:x: 474
|
|
217
|
-
:y: 439
|
|
218
|
-
:color: green
|
|
219
|
-
:fixed: true
|
|
220
|
-
- :id: 25
|
|
221
|
-
:name: c-d=delete=一字削除
|
|
222
|
-
:type: file
|
|
223
|
-
:file_path: "../c-keys=controll-keys=ファイル編集のkeyバインド/c-d=delete=一字削除"
|
|
224
|
-
:icon_path:
|
|
225
|
-
:x: 263
|
|
226
|
-
:y: 546
|
|
227
|
-
:color: green
|
|
228
|
-
:fixed: true
|
|
229
|
-
- :id: 26
|
|
230
|
-
:name: c-k=kill line=一行削除
|
|
231
|
-
:type: file
|
|
232
|
-
:file_path: "../c-keys=controll-keys=ファイル編集のkeyバインド/c-k=kill line=一行削除"
|
|
233
|
-
:icon_path:
|
|
234
|
-
:x: 262
|
|
235
|
-
:y: 564
|
|
236
|
-
:color: green
|
|
237
|
-
:fixed: true
|
|
238
|
-
:edges:
|
|
239
|
-
- :from: 1
|
|
240
|
-
# from: file=file=ファイル操作, to: ls=list=cwdのファイル,dirの表示
|
|
241
|
-
:to: 2
|
|
242
|
-
- :from: 2
|
|
243
|
-
# from: ls=list=cwdのファイル,dirの表示, to: ls -lat=list long all time
|
|
244
|
-
:to: 3
|
|
245
|
-
- :from: 1
|
|
246
|
-
# from: file=file=ファイル操作, to: mv=move=ファイルの移動
|
|
247
|
-
:to: 4
|
|
248
|
-
- :from: 1
|
|
249
|
-
# from: file=file=ファイル操作, to: cp=copy=ファイルの複製
|
|
250
|
-
:to: 5
|
|
251
|
-
- :from: 1
|
|
252
|
-
# from: file=file=ファイル操作, to: rm=remove=ファイルの削除
|
|
253
|
-
:to: 6
|
|
254
|
-
- :from: 1
|
|
255
|
-
# from: file=file=ファイル操作, to: cat=catenate=ファイルの中身を出力
|
|
256
|
-
:to: 7
|
|
257
|
-
- :from: 8
|
|
258
|
-
# from: dir=directory=フォルダ, to: pwd=print working directory=cwd PATHを表示
|
|
259
|
-
:to: 9
|
|
260
|
-
- :from: 9
|
|
261
|
-
# from: pwd=print working directory=cwd PATHを表示, to: mkdir=make directory=dir作成
|
|
262
|
-
:to: 10
|
|
263
|
-
- :from: 8
|
|
264
|
-
# from: dir=directory=フォルダ, to: rm -rf=remove recursively forcefully=PATHを再帰的で強制的に削除
|
|
265
|
-
:to: 11
|
|
266
|
-
- :from: 8
|
|
267
|
-
# from: dir=directory=フォルダ, to: cwd=current working directory=ファイル操作をしているPATH,基準となる場所
|
|
268
|
-
:to: 12
|
|
269
|
-
- :from: 8
|
|
270
|
-
# from: dir=directory=フォルダ, to: cd=change directory=cwdの移動
|
|
271
|
-
:to: 13
|
|
272
|
-
- :from: 8
|
|
273
|
-
# from: dir=directory=フォルダ, to: tree=tree=ディレクトリのツリー表示
|
|
274
|
-
:to: 14
|
|
275
|
-
- :from: 15
|
|
276
|
-
# from: path=path=パス,小径, to: full_path=full path=絶対パス
|
|
277
|
-
:to: 16
|
|
278
|
-
- :from: 15
|
|
279
|
-
# from: path=path=パス,小径, to: rel_path=relative path=相対パス
|
|
280
|
-
:to: 17
|
|
281
|
-
- :from: 18
|
|
282
|
-
# from: c-keys=controll-keys=ファイル編集のkeyバインド, to: c-a=ahead=行頭へ移動
|
|
283
|
-
:to: 19
|
|
284
|
-
- :from: 18
|
|
285
|
-
# from: c-keys=controll-keys=ファイル編集のkeyバインド, to: c-e=end=行末へ移動
|
|
286
|
-
:to: 20
|
|
287
|
-
- :from: 18
|
|
288
|
-
# from: c-keys=controll-keys=ファイル編集のkeyバインド, to: c-p=previous=前行へ移動
|
|
289
|
-
:to: 21
|
|
290
|
-
- :from: 18
|
|
291
|
-
# from: c-keys=controll-keys=ファイル編集のkeyバインド, to: c-n=next=次行へ移動
|
|
292
|
-
:to: 22
|
|
293
|
-
- :from: 18
|
|
294
|
-
# from: c-keys=controll-keys=ファイル編集のkeyバインド, to: c-f=forward=一字進む
|
|
295
|
-
:to: 23
|
|
296
|
-
- :from: 18
|
|
297
|
-
# from: c-keys=controll-keys=ファイル編集のkeyバインド, to: c-b=backward=一字戻る
|
|
298
|
-
:to: 24
|
|
299
|
-
- :from: 18
|
|
300
|
-
# from: c-keys=controll-keys=ファイル編集のkeyバインド, to: c-d=delete=一字削除
|
|
301
|
-
:to: 25
|
|
302
|
-
- :from: 18
|
|
303
|
-
# from: c-keys=controll-keys=ファイル編集のkeyバインド, to: c-k=kill line=一行削除
|
|
304
|
-
:to: 26
|
|
@@ -1,174 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
:nodes:
|
|
3
|
-
- :id: 1
|
|
4
|
-
:name: file=file=ファイル操作
|
|
5
|
-
:type: dir
|
|
6
|
-
:file_path: "."
|
|
7
|
-
- :id: 2
|
|
8
|
-
:name: ls=list=cwdのファイル,dirの表示
|
|
9
|
-
:type: dir
|
|
10
|
-
:file_path: "./ls=list=cwdのファイル,dirの表示"
|
|
11
|
-
- :id: 3
|
|
12
|
-
:name: ls -lat=list long all time
|
|
13
|
-
:type: file
|
|
14
|
-
:file_path: "./ls=list=cwdのファイル,dirの表示/ls -lat=list long all time"
|
|
15
|
-
- :id: 4
|
|
16
|
-
:name: mv=move=ファイルの移動
|
|
17
|
-
:type: file
|
|
18
|
-
:file_path: "./mv=move=ファイルの移動"
|
|
19
|
-
- :id: 5
|
|
20
|
-
:name: cp=copy=ファイルの複製
|
|
21
|
-
:type: file
|
|
22
|
-
:file_path: "./cp=copy=ファイルの複製"
|
|
23
|
-
- :id: 6
|
|
24
|
-
:name: rm=remove=ファイルの削除
|
|
25
|
-
:type: file
|
|
26
|
-
:file_path: "./rm=remove=ファイルの削除"
|
|
27
|
-
- :id: 7
|
|
28
|
-
:name: cat=catenate=ファイルの中身を出力
|
|
29
|
-
:type: file
|
|
30
|
-
:file_path: "./cat=catenate=ファイルの中身を出力"
|
|
31
|
-
- :id: 8
|
|
32
|
-
:name: dir=directory=フォルダ
|
|
33
|
-
:type: dir
|
|
34
|
-
:file_path: "../dir=directory=フォルダ"
|
|
35
|
-
- :id: 9
|
|
36
|
-
:name: pwd=print working directory=cwd PATHを表示
|
|
37
|
-
:type: dir
|
|
38
|
-
:file_path: "../dir=directory=フォルダ/pwd=print working directory=cwd PATHを表示"
|
|
39
|
-
- :id: 10
|
|
40
|
-
:name: mkdir=make directory=dir作成
|
|
41
|
-
:type: file
|
|
42
|
-
:file_path: "../dir=directory=フォルダ/pwd=print working directory=cwd PATHを表示/mkdir=make
|
|
43
|
-
directory=dir作成"
|
|
44
|
-
- :id: 11
|
|
45
|
-
:name: rm -rf=remove recursively forcefully=PATHを再帰的で強制的に削除
|
|
46
|
-
:type: file
|
|
47
|
-
:file_path: "../dir=directory=フォルダ/rm -rf=remove recursively forcefully=PATHを再帰的で強制的に削除"
|
|
48
|
-
- :id: 12
|
|
49
|
-
:name: cwd=current working directory=ファイル操作をしているPATH,基準となる場所
|
|
50
|
-
:type: file
|
|
51
|
-
:file_path: "../dir=directory=フォルダ/cwd=current working directory=ファイル操作をしているPATH,基準となる場所"
|
|
52
|
-
- :id: 13
|
|
53
|
-
:name: cd=change directory=cwdの移動
|
|
54
|
-
:type: file
|
|
55
|
-
:file_path: "../dir=directory=フォルダ/cd=change directory=cwdの移動"
|
|
56
|
-
- :id: 14
|
|
57
|
-
:name: tree=tree=ディレクトリのツリー表示
|
|
58
|
-
:type: file
|
|
59
|
-
:file_path: "../dir=directory=フォルダ/tree=tree=ディレクトリのツリー表示"
|
|
60
|
-
- :id: 15
|
|
61
|
-
:name: path=path=パス,小径
|
|
62
|
-
:type: dir
|
|
63
|
-
:file_path: "../path=path=パス,小径"
|
|
64
|
-
- :id: 16
|
|
65
|
-
:name: full_path=full path=絶対パス
|
|
66
|
-
:type: file
|
|
67
|
-
:file_path: "../path=path=パス,小径/full_path=full path=絶対パス"
|
|
68
|
-
- :id: 17
|
|
69
|
-
:name: rel_path=relative path=相対パス
|
|
70
|
-
:type: file
|
|
71
|
-
:file_path: "../path=path=パス,小径/rel_path=relative path=相対パス"
|
|
72
|
-
- :id: 18
|
|
73
|
-
:name: c-keys=controll-keys=ファイル編集のkeyバインド
|
|
74
|
-
:type: dir
|
|
75
|
-
:file_path: "../c-keys=controll-keys=ファイル編集のkeyバインド"
|
|
76
|
-
- :id: 19
|
|
77
|
-
:name: c-a=ahead=行頭へ移動
|
|
78
|
-
:type: file
|
|
79
|
-
:file_path: "../c-keys=controll-keys=ファイル編集のkeyバインド/c-a=ahead=行頭へ移動"
|
|
80
|
-
- :id: 20
|
|
81
|
-
:name: c-e=end=行末へ移動
|
|
82
|
-
:type: file
|
|
83
|
-
:file_path: "../c-keys=controll-keys=ファイル編集のkeyバインド/c-e=end=行末へ移動"
|
|
84
|
-
- :id: 21
|
|
85
|
-
:name: c-p=previous=前行へ移動
|
|
86
|
-
:type: file
|
|
87
|
-
:file_path: "../c-keys=controll-keys=ファイル編集のkeyバインド/c-p=previous=前行へ移動"
|
|
88
|
-
- :id: 22
|
|
89
|
-
:name: c-n=next=次行へ移動
|
|
90
|
-
:type: file
|
|
91
|
-
:file_path: "../c-keys=controll-keys=ファイル編集のkeyバインド/c-n=next=次行へ移動"
|
|
92
|
-
- :id: 23
|
|
93
|
-
:name: c-f=forward=一字進む
|
|
94
|
-
:type: file
|
|
95
|
-
:file_path: "../c-keys=controll-keys=ファイル編集のkeyバインド/c-f=forward=一字進む"
|
|
96
|
-
- :id: 24
|
|
97
|
-
:name: c-b=backward=一字戻る
|
|
98
|
-
:type: file
|
|
99
|
-
:file_path: "../c-keys=controll-keys=ファイル編集のkeyバインド/c-b=backward=一字戻る"
|
|
100
|
-
- :id: 25
|
|
101
|
-
:name: c-d=delete=一字削除
|
|
102
|
-
:type: file
|
|
103
|
-
:file_path: "../c-keys=controll-keys=ファイル編集のkeyバインド/c-d=delete=一字削除"
|
|
104
|
-
- :id: 26
|
|
105
|
-
:name: c-k=kill line=一行削除
|
|
106
|
-
:type: file
|
|
107
|
-
:file_path: "../c-keys=controll-keys=ファイル編集のkeyバインド/c-k=kill line=一行削除"
|
|
108
|
-
:edges:
|
|
109
|
-
- :from: 1
|
|
110
|
-
# from: file=file=ファイル操作, to: ls=list=cwdのファイル,dirの表示
|
|
111
|
-
:to: 2
|
|
112
|
-
- :from: 2
|
|
113
|
-
# from: ls=list=cwdのファイル,dirの表示, to: ls -lat=list long all time
|
|
114
|
-
:to: 3
|
|
115
|
-
- :from: 1
|
|
116
|
-
# from: file=file=ファイル操作, to: mv=move=ファイルの移動
|
|
117
|
-
:to: 4
|
|
118
|
-
- :from: 1
|
|
119
|
-
# from: file=file=ファイル操作, to: cp=copy=ファイルの複製
|
|
120
|
-
:to: 5
|
|
121
|
-
- :from: 1
|
|
122
|
-
# from: file=file=ファイル操作, to: rm=remove=ファイルの削除
|
|
123
|
-
:to: 6
|
|
124
|
-
- :from: 1
|
|
125
|
-
# from: file=file=ファイル操作, to: cat=catenate=ファイルの中身を出力
|
|
126
|
-
:to: 7
|
|
127
|
-
- :from: 8
|
|
128
|
-
# from: dir=directory=フォルダ, to: pwd=print working directory=cwd PATHを表示
|
|
129
|
-
:to: 9
|
|
130
|
-
- :from: 9
|
|
131
|
-
# from: pwd=print working directory=cwd PATHを表示, to: mkdir=make directory=dir作成
|
|
132
|
-
:to: 10
|
|
133
|
-
- :from: 8
|
|
134
|
-
# from: dir=directory=フォルダ, to: rm -rf=remove recursively forcefully=PATHを再帰的で強制的に削除
|
|
135
|
-
:to: 11
|
|
136
|
-
- :from: 8
|
|
137
|
-
# from: dir=directory=フォルダ, to: cwd=current working directory=ファイル操作をしているPATH,基準となる場所
|
|
138
|
-
:to: 12
|
|
139
|
-
- :from: 8
|
|
140
|
-
# from: dir=directory=フォルダ, to: cd=change directory=cwdの移動
|
|
141
|
-
:to: 13
|
|
142
|
-
- :from: 8
|
|
143
|
-
# from: dir=directory=フォルダ, to: tree=tree=ディレクトリのツリー表示
|
|
144
|
-
:to: 14
|
|
145
|
-
- :from: 15
|
|
146
|
-
# from: path=path=パス,小径, to: full_path=full path=絶対パス
|
|
147
|
-
:to: 16
|
|
148
|
-
- :from: 15
|
|
149
|
-
# from: path=path=パス,小径, to: rel_path=relative path=相対パス
|
|
150
|
-
:to: 17
|
|
151
|
-
- :from: 18
|
|
152
|
-
# from: c-keys=controll-keys=ファイル編集のkeyバインド, to: c-a=ahead=行頭へ移動
|
|
153
|
-
:to: 19
|
|
154
|
-
- :from: 18
|
|
155
|
-
# from: c-keys=controll-keys=ファイル編集のkeyバインド, to: c-e=end=行末へ移動
|
|
156
|
-
:to: 20
|
|
157
|
-
- :from: 18
|
|
158
|
-
# from: c-keys=controll-keys=ファイル編集のkeyバインド, to: c-p=previous=前行へ移動
|
|
159
|
-
:to: 21
|
|
160
|
-
- :from: 18
|
|
161
|
-
# from: c-keys=controll-keys=ファイル編集のkeyバインド, to: c-n=next=次行へ移動
|
|
162
|
-
:to: 22
|
|
163
|
-
- :from: 18
|
|
164
|
-
# from: c-keys=controll-keys=ファイル編集のkeyバインド, to: c-f=forward=一字進む
|
|
165
|
-
:to: 23
|
|
166
|
-
- :from: 18
|
|
167
|
-
# from: c-keys=controll-keys=ファイル編集のkeyバインド, to: c-b=backward=一字戻る
|
|
168
|
-
:to: 24
|
|
169
|
-
- :from: 18
|
|
170
|
-
# from: c-keys=controll-keys=ファイル編集のkeyバインド, to: c-d=delete=一字削除
|
|
171
|
-
:to: 25
|
|
172
|
-
- :from: 18
|
|
173
|
-
# from: c-keys=controll-keys=ファイル編集のkeyバインド, to: c-k=kill line=一行削除
|
|
174
|
-
:to: 26
|
|
File without changes
|
|
File without changes
|