rule all:
    input:
        "test.txt"


rule a:
    output:
        pipe("test.txt")
    shell:
        "echo test > {output}"

