DEV Community

Anton
Anton

Posted on

Have you done anything scripty with Elixir?

Did you write any scripts with Elixir?

Care to share the wisdom?

Top comments (2)

Collapse
 
iboard profile image
Andreas Altendorfer • Edited

I love to start my scripts with

#! /usr/bin/env elixir

especially when I have to parse logfiles but more and more even for simple stuff.
Here I have a template using OptionParser.

Collapse
 
antonrich profile image
Anton

I'm gonna be using your template : )