Skip to content

Commit

Permalink
Bump v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vishaltelangre committed Feb 28, 2019
1 parent 70f6246 commit b342889
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "find-files"
version = "0.1.1"
version = "0.1.2"
description = "Find Files (ff) utility recursively searches the files whose names match the specified RegExp pattern in the provided directory (defaults to the current directory if not provided)."
authors = ["Vishal Telangre <the@vishaltelangre.com>"]
license = "Unlicense OR MIT"
Expand Down
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Find Files (ff)

[![Build Status](https://travis-ci.org/vishaltelangre/ff.svg?branch=master)](https://travis-ci.org/vishaltelangre/ff)
[![Version info](https://img.shields.io/crates/v/find-files.svg)](https://crates.io/crates/find-files)

Find Files (ff) utility recursively searches the files whose names match the
specified RegExp pattern in the provided directory (defaults to the current
directory if not provided).
Expand Down Expand Up @@ -81,8 +84,14 @@ ff \.js ./spec
- Search a file which is expected to be inside hidden `.git` directory whose name contains `commit` or something similar.

```bash
$ ff git.*commit -H
$ ff git.*commit

./.git/COMMIT_EDITMSG
# omitted other results
```

- Ignore hidden files and directories.

```
ff emacs -H
```

0 comments on commit b342889

Please sign in to comment.