10 lines
266 B
Bash
10 lines
266 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
OUTDIR="tests/expected"
|
||
|
[[ ! -d "$OUTDIR" ]] && mkdir -p "$OUTDIR"
|
||
|
|
||
|
echo "Hello there" > $OUTDIR/hello1.txt
|
||
|
echo "Hello" "there" > $OUTDIR/hello2.txt
|
||
|
echo -n "Hello there" > $OUTDIR/hello1.n.txt
|
||
|
echo -n "Hello" "there" > $OUTDIR/hello2.n.txt
|