scripts/list_dlls.rb
$:
.
each
do
|
path
|
Dir
[
File
.
join
(
path
,
'**/*.dll'
)].
each
do
|
dll_file
|
puts
dll_file
end
end