7 lines
83 B
Bash
7 lines
83 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
println "hello" > hello
|
|
println "world" > world
|
|
zstd hello world
|