mkalias 0.1.0 → 0.1.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.
- checksums.yaml +4 -4
- data/README.md +5 -0
- data/exe/mkalias +4 -0
- data/lib/mkalias/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 121628ea9139c58895d08277e35deac58cc0d104
|
|
4
|
+
data.tar.gz: fb5124df5ff7c95a9147ac550b8fe33ce2dbc282
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fbb1f6347c033d947e8a0b6a2a01985b52e8e0d99137decf0e1f9e7acb2125755259136002f07bddeafa2228db1a9f6545dd06353dcd2ab8051624e410cbef11
|
|
7
|
+
data.tar.gz: 7fceb313566ae8e5549e00c6ff19c8236f8f7b9b39ade32c51f565be30588743ad78c75018e651f6dc7c92d24d3c9d9a37f42db5c47c0af0861c769ea2ae706e
|
data/README.md
CHANGED
|
@@ -27,6 +27,11 @@ option: list -> mkalias list
|
|
|
27
27
|
option: show -> mkalias show [alias]
|
|
28
28
|
option: remove -> mkalias remove [alias]
|
|
29
29
|
|
|
30
|
+
Attention: To make alias with args use #. Example:
|
|
31
|
+
$ mkalias new [alias] "echo #1 #2 #3"
|
|
32
|
+
- Then you can use: $ [alias] arg1 arg2 arg3
|
|
33
|
+
|
|
34
|
+
|
|
30
35
|
## Development
|
|
31
36
|
|
|
32
37
|
After checking out the repo, run `bin/setup` to install dependencies.
|
data/exe/mkalias
CHANGED
|
@@ -10,6 +10,10 @@ def usage
|
|
|
10
10
|
puts "option: list \t -> mkalias list"
|
|
11
11
|
puts "option: show \t -> mkalias show [alias]"
|
|
12
12
|
puts "option: remove \t -> mkalias remove [alias]"
|
|
13
|
+
puts "\n"
|
|
14
|
+
puts "Attention: To make alias with args use #. Example:"
|
|
15
|
+
puts " $ mkalias new [alias] \"echo #1 #2 #3\""
|
|
16
|
+
puts " - Then you can use: $ [alias] arg1 arg2 arg3"
|
|
13
17
|
abort
|
|
14
18
|
end
|
|
15
19
|
|
data/lib/mkalias/version.rb
CHANGED