%%cat > /tmp/foo.txt
Hello world!
Writing /tmp/foo.txt
%%cat > /tmp/foo.txt
Hello again world!
Overwriting /tmp/foo.txt
%%cat >> /tmp/foo.txt
It's a beautiful day...
Appending to /tmp/foo.txt
!cat /tmp/foo.txt
Hello again world! It's a beautiful day...