tail.css/bin/emit

25 lines
471 B
Text
Raw Normal View History

2024-01-28 04:43:09 +01:00
#!/usr/bin/env ruby
$stdout.sync = true
def noecho
system "stty -echo"
str = yield
system "stty echo"
str
end
loop do
str = noecho { $stdin.gets }
str = str.gsub(/[^A-Za-z0-9_\s\/\-,;:"']/, '')
sep = "\t"
class_name, class_body = str.split(sep, 2)
if class_name && class_body
class_name.gsub!(%r|([/.])|) { "\\#{_1}" }
print ".#{class_name.chomp}",
" { \n",
" " * 2,
class_body.chomp,
"\n}\n"
end
end