18 lines
289 B
Elixir
18 lines
289 B
Elixir
defmodule FindOldMp3s.Main do
|
|
@moduledoc """
|
|
Main module to run when invoking the binary
|
|
"""
|
|
|
|
use Bakeware.Script
|
|
|
|
@impl Bakeware.Script
|
|
def main(args) do
|
|
path = args
|
|
|> Path.expand
|
|
|
|
Path.wildcard(path) |> Enum.each(fn path -> IO.puts(path) end)
|
|
|
|
0
|
|
end
|
|
end
|