https://github.com/coc1961/gochoose
https://github.com/coc1961/gochoose
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/coc1961/gochoose
- Owner: coc1961
- License: mit
- Created: 2020-08-03T00:51:13.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-25T23:28:44.000Z (almost 5 years ago)
- Last Synced: 2025-01-19T19:59:20.574Z (5 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`
```