From b3428898c58a0252de31a817f02a5dabedd8782c Mon Sep 17 00:00:00 2001 From: Vishal Telangre Date: Thu, 28 Feb 2019 09:22:56 +0530 Subject: [PATCH] Bump v0.1.2 --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 11 ++++++++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b3e52cb..b1214ce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -44,7 +44,7 @@ dependencies = [ [[package]] name = "find-files" -version = "0.1.1" +version = "0.1.2" dependencies = [ "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index ab2c04f..72bdce0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] license = "Unlicense OR MIT" diff --git a/README.md b/README.md index 4c0294e..1cb9fb7 100644 --- a/README.md +++ b/README.md @@ -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). @@ -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 +```