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

https://github.com/coc1961/gochoose


https://github.com/coc1961/gochoose

Last synced: 3 months 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`

```