Skip to content

Commit

Permalink
Add usage example to README (#40)
Browse files Browse the repository at this point in the history
Co-authored-by: Vicente Lermanda <vlermanda@MacBook-Air-2.local>
  • Loading branch information
vlermandac and Vicente Lermanda authored Mar 23, 2024
1 parent e61942c commit a65aacb
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,19 @@ manual page.

## Usage

### List the content from current directory

```bash
$ ls | choose
```

### Open apps from the applications directories

```bash
$ ls /Applications/ /Applications/Utilities/ /System/Applications/ /System/Applications/Utilities/ | \
$ grep '\.app$' | sed 's/\.app$//g' | choose | xargs -I {} open -a "{}.app"
```

## License

See [MIT LICENSE](./LICENSE).

0 comments on commit a65aacb

Please sign in to comment.