wordexp/lib/wordexp/cli.rb
Sami Samhuri fb1bc1a910
Implement the most basic API possible
There are no options exposed to Ruby yet.
2022-01-16 18:22:54 -08:00

7 lines
108 B
Ruby

module Wordexp
class CLI
def call(string)
puts Wordexp.expand(string).inspect
end
end
end