1
0
Fork 0
This commit is contained in:
Lars Martens 2024-12-04 22:56:57 +01:00
parent 746b07dc83
commit bfbe7ceb69
Signed by: haselkern
GPG key ID: B5CF1F363C179AD4
2 changed files with 109 additions and 0 deletions

View file

@ -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