Files
find_old_mp3s/lib/find_old_mp3s.ex
2024-05-15 21:51:27 +02:00

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