Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/coc1961/gochoose


https://github.com/coc1961/gochoose

Last synced: about 1 month ago
JSON representation

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`

```