rogerdpack-whichr 0.0.6 → 0.1.0
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.
- data/README +16 -13
- metadata +1 -1
data/README
CHANGED
@@ -1,20 +1,23 @@
|
|
1
|
-
|
1
|
+
ruby which: the linux "which" command re-written in ruby [and windows-friendly].
|
2
2
|
|
3
|
-
|
3
|
+
An executable locator (which command) for windows that actually works!
|
4
4
|
|
5
|
-
Itch it scratches: there seems to be a lack of a "which" command for windows that actually
|
5
|
+
Itch it scratches: there seems to be a lack of a "which" command for windows that actually work--they sometimes skip batch files entirely [batch file? what's that?] or don't list extensions, leaving you in doubt. Despite running "which yyy" you never know what you're really running when you next run yyy in the command line--is it yyy.exe or some other yyy.bat that wasn't reported by "which"?
|
6
|
+
|
7
|
+
Try it--you might really like it.
|
6
8
|
|
7
9
|
To install:
|
8
|
-
C:> gem install rogerdpack-whichr
|
9
|
-
|
10
|
-
C:> whichr executable_name_here [extension could be included, but is optional]
|
11
10
|
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
11
|
+
C:\>gem install rogerdpack-whichr
|
12
|
+
|
13
|
+
C:\>whichr executable_name_here [extension can be included, but is optional]
|
14
|
+
|
15
|
+
usage:
|
17
16
|
|
18
|
-
|
17
|
+
C:\>whichr ruby
|
18
|
+
higher in the list will be executed first
|
19
|
+
./ruby.bat
|
20
|
+
C:/Ruby/bin/ruby.exe
|
21
|
+
c:/cygwin/bin/ruby.exe
|
19
22
|
|
20
|
-
Feedback welcome rogerdpack on github
|
23
|
+
Feedback welcome rogerdpack on github/gmail
|