7 lines
93 B
Bash
Executable File
7 lines
93 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Making day_$1"
|
|
mkdir day_$1
|
|
cp template.nim day_$1
|
|
touch day_$1/input.txt
|