mirror of
https://github.com/samsonjs/wordexp.git
synced 2026-04-05 10:35:50 +00:00
7 lines
108 B
Ruby
7 lines
108 B
Ruby
module Wordexp
|
|
class CLI
|
|
def call(string)
|
|
puts Wordexp.expand(string).inspect
|
|
end
|
|
end
|
|
end
|