aocinit

Perl utility to initialize directories and files for the Advent of Code
git clone git://git.samirparikh.com/aocinit
Log | Files | Refs | README | LICENSE

README.md (573B) - raw


      1 `aocinit` is a Perl utility to help organize your Advent of Code directories
      2 and subdirectories.  It automatically creates folders for each year's events
      3 and each day's exercises.  It also provides some boilerplate code so you can
      4 spend more time solving the challenges.
      5 
      6 Usage:
      7 
      8 `aocinit [year] [day]`
      9 
     10 where:
     11 
     12         `[year]` is the two-digit year (e.g. '22')
     13         '[day]`  is the two-digit day (e.g. '08' or '15')
     14 
     15 You can configure the location of where to put the directories and any
     16 directory prefix by changing the `$PATH_FROM_HOME` and `$DIR_PREFIX` variables.