Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sindresorhus/find-up-cli
Find a file by walking up parent directories
https://github.com/sindresorhus/find-up-cli
Last synced: about 1 month ago
JSON representation
Find a file by walking up parent directories
- Host: GitHub
- URL: https://github.com/sindresorhus/find-up-cli
- Owner: sindresorhus
- License: mit
- Created: 2015-09-01T07:21:36.000Z (about 9 years ago)
- Default Branch: main
- Last Pushed: 2024-02-03T15:20:22.000Z (9 months ago)
- Last Synced: 2024-04-14T06:10:45.829Z (7 months ago)
- Language: JavaScript
- Size: 11.7 KB
- Stars: 37
- Watchers: 7
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# find-up-cli
> Find a file by walking up parent directories
## Install
```sh
npm install --global find-up-cli
```## Usage
```
$ find-up --helpUsage
$ find-upOptions
--cwd= Working directory
--all Output all matching files, not just the firstExample
$ echo $PWD
/Users/sindresorhus/foo/bar
$ find-up unicorn.png
/Users/sindresorhus/unicorn.png
$ find-up unicorn.png --all
/Users/sindresorhus/foo/unicorn.png
/Users/sindresorhus/unicorn.png
```## Example
```
/
└── Users
└── sindresorhus
├── unicorn.png
└── foo
└── bar
├── baz
└── faz
``````
$ echo $PWD
/Users/sindresorhus/foo/bar/faz
$ find-up unicorn.png
/Users/sindresorhus/unicorn.png
```## Related
- [find-up](https://github.com/sindresorhus/find-up) - API for this module