diff options
Diffstat (limited to 'mktoday')
-rwxr-xr-x | mktoday | 34 |
1 files changed, 34 insertions, 0 deletions
@@ -0,0 +1,34 @@ +#!/bin/bash + +day=$(date +%d) + +[ -d day${day} ] && { + echo "Today already exists!" + exit 1 +} + +mkdir day${day} +touch day${day}/test +touch day${day}/input +sed -e "s/XX/${day}/g" > day${day}/day${day}.java <<EOJAVA +import java.io.IOException; +import java.io.RandomAccessFile; + +public class dayXX { + public static void main(String args[]) throws IOException { + RandomAccessFile input = new RandomAccessFile("test", "r"); + System.out.println("Day XX Part 1: " + part1(input)); + input.seek(0); + System.out.println("Day XX Part 2: " + part2(input)); + input.close(); + } + + public static String part1(RandomAccessFile input) throws IOException { + return "WIP"; + } + + public static String part2(RandomAccessFile input) throws IOException { + return "WIP"; + } +} +EOJAVA |