Solve 04
This commit is contained in:
parent
746b07dc83
commit
bfbe7ceb69
2 changed files with 109 additions and 0 deletions
9
justfile
9
justfile
|
@ -27,3 +27,12 @@ begin: _folders
|
|||
# Makes sure that folders exist
|
||||
_folders:
|
||||
mkdir -p input src/bin
|
||||
|
||||
# Creates all input files. Use this to start using the repo.
|
||||
init: _folders
|
||||
#!/usr/bin/env bash
|
||||
for i in $(seq -w 1 25);
|
||||
do
|
||||
touch input/$i
|
||||
touch input/$i-test
|
||||
done
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue