-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
45 lines (26 loc) · 902 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
= RbFind
A substitute for the Unix find tool using Ruby expressions
== Description
RbFind does the same as the standard Unix find tool but has a
different calling syntax. You may specify your search reqest as a
Ruby expression.
== Features
* ls long format style output
* Built-in grep
* Colored ls and grep output
* Automatically exclude version control system or Vim swap files
* No dependecies
== Example
Find files that were modified in the last five minutes.
$ rbfind -p 'file and age < 5.m'
Grep whole directory but skip ".git/" or ".svn/", and
".filename.swp".
$ rbfind -CWg require
Save time and do not grep large files.
$ rbfind 'filesize < 100.kB and grep /require/'
Output ls long format.
$ rbfind -P
Print MD5 digest and size for each file.
$ rbfind 'spacesep digest_md5, size.w8, path'
== Copyright
(C) 2008-2014, Bertram Scharpf <[email protected]>