11 lines
121 B
Bash
Executable File
11 lines
121 B
Bash
Executable File
rm -rf ./in ./out
|
|
echo "Hello world" > ./in
|
|
|
|
zstd ./in -o ./out || exit 1
|
|
|
|
ls ./out || exit 1
|
|
|
|
rm -rf ./in ./out
|
|
|
|
exit 0
|