rbfind 2.11 → 2.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/rbfind +51 -47
- data/lib/rbfind.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 42423613ef5e13b66ee84521bbcc54152d003029d03045023be9d5b462b932c2
|
|
4
|
+
data.tar.gz: 0fdef9df522018d6e2beb14e8793f843a4fb363daf77b410ae5307d3d322581b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 749e55300915ef81eb78e94c92df156c486da011844aa5b396e14e1780074a275e980867cd1275c9d75771e775bc7a1d9200d4f699dd3d2dccac8d695cb52991
|
|
7
|
+
data.tar.gz: 4d67e39478fe2a9a675eed6ec4d4ba00d88c427020afe3942601c79055f7aaf94c57ee539b8ffd796fe6904ace8d071f809b0e68ec14b692c00fff214a4809cb
|
data/bin/rbfind
CHANGED
|
@@ -66,62 +66,66 @@ module RbFind
|
|
|
66
66
|
[ %w(--end -E), :blk, "eval block after end"],
|
|
67
67
|
[ %w(--file -f), :nam, "read block expression from file"],
|
|
68
68
|
[ %w(--encoding -K), :str, "encoding extern[:intern] (same as ruby -E)"],
|
|
69
|
+
[ %w(--width-user ), :num, "width of user field"],
|
|
70
|
+
[ %w(--width-size ), :num, "width of size field"],
|
|
69
71
|
]
|
|
70
72
|
|
|
71
73
|
def initialize
|
|
72
74
|
@params = {}
|
|
73
75
|
envopts = ENV[ "RBFIND_OPTIONS"]
|
|
74
76
|
$*.unshift *envopts.split if envopts
|
|
75
|
-
opts = GetoptLong.new *OPTIONS.map { |
|
|
76
|
-
[
|
|
77
|
+
opts = GetoptLong.new *OPTIONS.map { |names,arg,|
|
|
78
|
+
[*names,(arg ? GetoptLong::REQUIRED_ARGUMENT : GetoptLong::NO_ARGUMENT)]
|
|
77
79
|
}
|
|
78
80
|
opts.ordering = GetoptLong::PERMUTE
|
|
79
81
|
opts.quiet = true
|
|
80
82
|
opts.each do |opt,arg|
|
|
81
83
|
case opt
|
|
82
|
-
when '--help'
|
|
83
|
-
when '--version'
|
|
84
|
-
when '--examples'
|
|
85
|
-
when '--verbose'
|
|
86
|
-
when '--show'
|
|
87
|
-
when '--bw'
|
|
88
|
-
when '--colored'
|
|
89
|
-
when '--depth'
|
|
90
|
-
when '--maxdepth'
|
|
91
|
-
when '--argsdepth'
|
|
92
|
-
when '--follow'
|
|
93
|
-
when '--nosort'
|
|
94
|
-
when '--sort-by'
|
|
95
|
-
when '--time'
|
|
96
|
-
when '--size'
|
|
97
|
-
when '--dirs'
|
|
98
|
-
when '--reverse'
|
|
99
|
-
when '--require'
|
|
100
|
-
when '--puts-path'
|
|
101
|
-
when '--ls-l'
|
|
102
|
-
when '--long'
|
|
103
|
-
when '--humanage'
|
|
104
|
-
when '--ino'
|
|
105
|
-
when '--wider'
|
|
106
|
-
when '--slash'
|
|
107
|
-
when '--lines'
|
|
108
|
-
when '--reallines'
|
|
109
|
-
when '--grep'
|
|
110
|
-
when '--igrep'
|
|
111
|
-
when '--binary'
|
|
112
|
-
when '--no-vcs'
|
|
113
|
-
when '--no-swap'
|
|
114
|
-
when '--skip'
|
|
115
|
-
when '--demand'
|
|
116
|
-
when '--ext'
|
|
117
|
-
when '--visible'
|
|
118
|
-
when '--all'
|
|
119
|
-
when '--icase'
|
|
120
|
-
when '--nodirs'
|
|
121
|
-
when '--begin'
|
|
122
|
-
when '--end'
|
|
123
|
-
when '--file'
|
|
124
|
-
when '--encoding'
|
|
84
|
+
when '--help' then usage ; exit
|
|
85
|
+
when '--version' then puts PROGRAM ; exit
|
|
86
|
+
when '--examples' then usage_examples ; exit
|
|
87
|
+
when '--verbose' then @verbose = true
|
|
88
|
+
when '--show' then @show = true
|
|
89
|
+
when '--bw' then @color = false
|
|
90
|
+
when '--colored' then @color = true
|
|
91
|
+
when '--depth' then @params[ :depth_first] = true
|
|
92
|
+
when '--maxdepth' then @params[ :max_depth] = arg.to_i.nonzero?
|
|
93
|
+
when '--argsdepth' then @params[ :args_depth] = true
|
|
94
|
+
when '--follow' then @params[ :follow] = true
|
|
95
|
+
when '--nosort' then @params[ :sort] = false
|
|
96
|
+
when '--sort-by' then @params[ :sort] = instance_eval "proc { #{arg} }"
|
|
97
|
+
when '--time' then @params[ :sort] = proc { mtime } ; @params[ :reverse] = true
|
|
98
|
+
when '--size' then @params[ :sort] = proc { size } ; @params[ :reverse] = true
|
|
99
|
+
when '--dirs' then @params[ :dirs] = true
|
|
100
|
+
when '--reverse' then @params[ :reverse] = !@params[ :reverse]
|
|
101
|
+
when '--require' then require arg
|
|
102
|
+
when '--puts-path' then @puts = true
|
|
103
|
+
when '--ls-l' then @puts = :ls ; @wds ||= 6 ; @wdu ||= 6
|
|
104
|
+
when '--long' then @puts = :alt ; @wds ||= 7 ; @wdu ||= 4
|
|
105
|
+
when '--humanage' then @puts = :hum ; @wds ||= 7 ; @wdu ||= 4
|
|
106
|
+
when '--ino' then @puts = :ino ; @wds ||= 8 ; @wdu ||= 2
|
|
107
|
+
when '--wider' then @wdu and @wdu += 2 ; @wds and @wds += @puts != :ls ? 4 : 3
|
|
108
|
+
when '--slash' then @slash = true
|
|
109
|
+
when '--lines' then @lines = :plain ; @block = arg
|
|
110
|
+
when '--reallines' then @lines = :plain ; @real = true ; @block = arg
|
|
111
|
+
when '--grep' then @lines = :grep ; @block = arg
|
|
112
|
+
when '--igrep' then @lines = :grep ; @icase = true ; @block = arg
|
|
113
|
+
when '--binary' then @binary = true
|
|
114
|
+
when '--no-vcs' then @vcs = true
|
|
115
|
+
when '--no-swap' then @vim = true
|
|
116
|
+
when '--skip' then @skip = arg
|
|
117
|
+
when '--demand' then @demand = arg
|
|
118
|
+
when '--ext' then @ext = arg
|
|
119
|
+
when '--visible' then @visible = true
|
|
120
|
+
when '--all' then @visible = false
|
|
121
|
+
when '--icase' then @icase = true
|
|
122
|
+
when '--nodirs' then @nodirs = true
|
|
123
|
+
when '--begin' then @blkbegin = arg
|
|
124
|
+
when '--end' then @blkend = arg
|
|
125
|
+
when '--file' then @block = File.open arg do |f| f.each { |l| l.chomp! } end
|
|
126
|
+
when '--encoding' then e, i = arg.split ":" ; set_encoding e, i
|
|
127
|
+
when '--width-user' then @wdu = arg.to_i.nonzero?
|
|
128
|
+
when '--width-size' then @wds = arg.to_i.nonzero?
|
|
125
129
|
end
|
|
126
130
|
end
|
|
127
131
|
@args = $*.dup
|
|
@@ -160,7 +164,7 @@ module RbFind
|
|
|
160
164
|
[
|
|
161
165
|
"spcsep stype+modes,",
|
|
162
166
|
[
|
|
163
|
-
"user#{b}.w#@
|
|
167
|
+
"user#{b}.w#@wdu, group#{b}.w#@wdu,",
|
|
164
168
|
"size.w#{g}#@wds, #{time},",
|
|
165
169
|
"#{opath} + #{co ? 'carrow' : 'arrow'}.to_s",
|
|
166
170
|
]
|
|
@@ -234,7 +238,7 @@ module RbFind
|
|
|
234
238
|
when :ls then long_fmt false, false, "mtime.lsish", opath, co
|
|
235
239
|
when :alt then long_fmt true, true, "mtime.long", opath, co
|
|
236
240
|
when :hum then long_fmt true, true, "mage.t.r4", opath, co
|
|
237
|
-
when :ino then [ "spcsep ino.
|
|
241
|
+
when :ino then [ "spcsep ino.w8, nlink.w2, #{opath}"]
|
|
238
242
|
else [ "puts #{opath}"]
|
|
239
243
|
end
|
|
240
244
|
@block = [ "if (", [ cond], ") then", @block, "end"] if cond
|
data/lib/rbfind.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rbfind
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: '2.
|
|
4
|
+
version: '2.12'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bertram Scharpf
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-09-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: |
|
|
14
14
|
A replacement for the standard UNIX command find.
|
|
@@ -54,7 +54,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
54
54
|
version: '0'
|
|
55
55
|
requirements:
|
|
56
56
|
- just Ruby
|
|
57
|
-
rubygems_version: 3.5.
|
|
57
|
+
rubygems_version: 3.5.18
|
|
58
58
|
signing_key:
|
|
59
59
|
specification_version: 4
|
|
60
60
|
summary: Ruby replacement for the standard Unix find tool
|