Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/coc1961/gochoose
https://github.com/coc1961/gochoose
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/coc1961/gochoose
- Owner: coc1961
- License: mit
- Created: 2020-08-03T00:51:13.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-25T23:28:44.000Z (over 4 years ago)
- Last Synced: 2024-06-20T14:17:55.539Z (6 months ago)
- Language: Go
- Size: 63.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gochoose
## Example
```sh
Select yes or no in shell script>option=`echo -e "yes\nno" | gochoose`; echo Option Selected $option
>Option Selected yes
select and change dir interactively
cd `ls -d -1 */ | gochoose`
```