Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jeertmans/locate
Locate recursively searches filenames that match regex pattern
https://github.com/jeertmans/locate
cli continuous-integration example-project find rust
Last synced: 18 days ago
JSON representation
Locate recursively searches filenames that match regex pattern
- Host: GitHub
- URL: https://github.com/jeertmans/locate
- Owner: jeertmans
- License: mit
- Created: 2021-09-26T11:48:21.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-20T23:26:35.000Z (almost 2 years ago)
- Last Synced: 2024-10-22T09:55:19.597Z (2 months ago)
- Topics: cli, continuous-integration, example-project, find, rust
- Language: Rust
- Homepage:
- Size: 868 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# locate
locate is command-line tool that recursively searches for filenames that match regex pattern.### Why locate exists
locate serves two purposes:
1. provide a easy-to-use filename search tool, an alternative to `find` (to some extent);
2. be an example project for Rust application development and continuous integration (CI) tools### Usage
To use locate, simply open any terminal and enter `locate --help` to list all availaible options.For example, if you want to list all Python executables:
```
locate "^python[\d](\.\d){0,1}$" -e
```