13 lines
191 B
Plaintext
13 lines
191 B
Plaintext
rule collect:
|
|
input:
|
|
[f"{i}.txt" for i in range(100)],
|
|
run:
|
|
shell("rm {input}")
|
|
|
|
|
|
rule create:
|
|
output:
|
|
"{i}.txt",
|
|
run:
|
|
shell("touch {output}")
|