What happens if the program writes a bunch of stuff to disk then later on tries to read it?
#!/bin/bash touch x if [ -f "x" ]; then rm -rf / else echo "I'm just an innocent little script." fi
https://www.kernel.org/doc/Documentation/filesystems/overlay...
What happens if the program writes a bunch of stuff to disk then later on tries to read it?