Use `>` and `>>`.
`>` overwrites, `>>` appends. Use them to capture command
output into log files or generated configs.
TASK
----
Run:
echo line1 > out.txt
echo line2 >> out.txt
cat out.txt
Pass when the output contains both "line1" and "line2".
Sign in to save your code and track progress across devices.