Files
Johannes Heuel 47c453ff82
All checks were successful
continuous-integration/drone/push Build is passing
clean up directory structure
2022-09-19 09:07:54 +02:00

13 lines
202 B
Plaintext

rule collect_and_delete:
input:
[f"{i}.txt" for i in range(100)],
run:
shell("rm {input}")
rule create:
output:
"{i}.txt",
run:
shell("touch {output}")