-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add suggest and show helpful commands in help menu
- Loading branch information
Showing
8 changed files
with
250 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
lib/suggest/suggest.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2014 Joseph Werle | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
BIN ?= suggest | ||
PREFIX ?= /usr/local | ||
|
||
install: | ||
cp suggest.sh $(PREFIX)/bin/$(BIN) | ||
|
||
uninstall: | ||
rm -f $(PREFIX)/bin/$(BIN) | ||
|
||
example.sh: | ||
./example.sh | ||
|
||
.PHONY: example.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
suggest.sh | ||
========== | ||
|
||
Suggests commands based on a query found in $PATH. Kinda like `which` | ||
but with queries | ||
|
||
## install | ||
|
||
[bpkg](https://github.com/bpkg/bpkg) | ||
|
||
```sh | ||
$ bpkg install -g jwerle/suggest.sh | ||
``` | ||
|
||
source: | ||
|
||
```sh | ||
$ git clone https://github.com/jwerle/suggest.sh.git | ||
$ make install -C suggest/ | ||
``` | ||
|
||
## usage | ||
|
||
``` | ||
usage: suggest [-hV] <query> | ||
``` | ||
|
||
## example | ||
|
||
```sh | ||
$ suggest git | ||
suggest: found 42 result(s) | ||
|
||
/usr/local/bin/git-alias | ||
/usr/local/bin/git-archive-file | ||
/usr/local/bin/git-back | ||
/usr/local/bin/git-bug | ||
/usr/local/bin/git-changelog | ||
/usr/local/bin/git-commits-since | ||
/usr/local/bin/git-contrib | ||
/usr/local/bin/git-count | ||
/usr/local/bin/git-create-branch | ||
/usr/local/bin/git-delete-branch | ||
/usr/local/bin/git-delete-merged-branches | ||
/usr/local/bin/git-delete-submodule | ||
/usr/local/bin/git-delete-tag | ||
/usr/local/bin/git-effort | ||
/usr/local/bin/git-extras | ||
|
||
... | ||
``` | ||
|
||
## license | ||
|
||
MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"name": "suggest", | ||
"version": "0.0.2", | ||
"description": "Suggest a command based on a query found in $PATH", | ||
"scripts": [ "suggest.sh" ], | ||
"install": "make install" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
#!/bin/bash | ||
|
||
## suggest version | ||
VERSION="0.0.2" | ||
|
||
## output usage | ||
usage () { | ||
echo "usage: suggest [-hV] <query>" | ||
} | ||
|
||
## main | ||
suggest () { | ||
declare -a local paths=() | ||
declare -a local seen=() | ||
declare -a local found=() | ||
local query="${1}" | ||
|
||
case "${query}" in | ||
-h|--help) | ||
usage | ||
return 0 | ||
;; | ||
|
||
-V|--version) | ||
echo "${VERSION}" | ||
return 0 | ||
;; | ||
|
||
*) | ||
if [ "-" = "${query:0:1}" ]; then | ||
echo >&2 "error: Unknown argument \`${query}'" | ||
return 1 | ||
fi | ||
;; | ||
esac | ||
|
||
## search path | ||
{ | ||
local res="" | ||
IFS=':' read -a paths <<< "${PATH}" | ||
for (( i = 0; i < ${#paths[@]}; ++i )); do | ||
local path="${paths[$i]}" | ||
local let skip=0 | ||
|
||
## omit non existent paths | ||
if ! test -d "${path}"; then | ||
continue | ||
else | ||
for (( n = 0; n < "${#seen[@]}"; ++n )); do | ||
if [ "${path}" = "${seen[$n]}" ]; then | ||
skip=1; | ||
break; | ||
fi | ||
done | ||
|
||
## check if skip needed | ||
if [ "1" = "${skip}" ]; then | ||
continue | ||
fi | ||
fi | ||
|
||
## mark seen | ||
seen+=( "${path}" ) | ||
|
||
## find in path | ||
if res=$(find "${path}" -name "${query}*" -prune -print 2>/dev/null); then | ||
if [ -z "${res}" ]; then | ||
continue | ||
fi | ||
res="$(echo ${res} | tr '\n' ' ')" | ||
## add to found count | ||
found+=( $(echo -n "${res}") ) | ||
fi | ||
done | ||
} | ||
|
||
## get total | ||
count="${#found[@]}" | ||
|
||
if (( ${count} == 1 )); then | ||
echo "${found[0]}" | ||
elif (( ${count} > 0 )); then | ||
printf "suggest: found %d result(s)\n" ${count} | ||
echo | ||
for (( i = 0; i < ${count}; ++i )); do | ||
printf "%d %s\n" $(echo -n ${found[$i]} | wc -c | tr -d ' ') "${found[$i]}" | ||
done | sort -n | awk '{ print $2 }' | xargs printf ' %s\n' | ||
else | ||
echo "suggest: Couldn't anything to match \`${query}'" | ||
return 1 | ||
fi | ||
return 0 | ||
} | ||
|
||
## export or run | ||
if [[ ${BASH_SOURCE[0]} != $0 ]]; then | ||
export -f suggest | ||
else | ||
suggest "$@" | ||
fi |