¿Qué comando crea mysterious.patch a partir de las diferencias entre old_file.txt y new_file.txt?
mysterious.patch
old_file.txt
new_file.txt
diff -uN new_file.txt old_file.txt > mysterious.patch
diff -uN old_file.txt new_file.txt < mysterious.patch
diff -uN old_file.txt new_file.txt > mysterious.patch
patch -p0 old_file.txt new_file.txt > mysterious.patch