site-neo/pfiles.rb

57 lines
1.0 KiB
Ruby
Raw Normal View History

2023-02-10 19:02:43 +00:00
#!/usr/bin/ruby
# pfiles.rb
2023-02-17 18:17:33 +00:00
# v1.0-p3
2023-02-11 14:08:06 +00:00
require 'find'
2023-02-17 18:17:33 +00:00
ignore=!File.file?('dat/ignore.txt') ? [] : File.readlines('dat/ignore.txt')
2023-02-11 14:08:06 +00:00
if ignore != []
ignore.map! do |i|
"in/#{i}"
end
end
class Enumerator
def collect
out=Array.new
for i in self
out.push(i)
end
return out
end
end
list=Find.find('in')
l=list.collect
case ARGV.first
when "doc"
for i in l do
next if ignore.include?(i) or /\.v.html/.match?(i)
2023-02-11 14:08:06 +00:00
if /\.(txti|org|md|html)$/.match?(i)
print i
print ' ' unless i==l.last
end
end
when "sass"
for i in l do
next if ignore.include?(i)
if /\.s[ac]ss$/.match?(i)
2023-02-11 14:08:06 +00:00
print i
print ' ' unless i==l.last
end
end
when "dir"
for i in l do
next if ignore.include?(i)
if File.directory?(i)
print i
print ' ' unless i==l.last
end
end
when "rest"
for i in l do
next if ignore.include?(i)
unless /\.(s[ac]ss|txti|org|md)$/.match?(i) or File.directory(i)
print i
print ' ' unless i==l.last
end
end
else
2023-02-10 19:02:43 +00:00
end