Qual comando cria mysterious.patch a partir das diferenças entre old_file.txt e new_file.txt?
mysterious.patch
old_file.txt
new_file.txt
patch -p0 old_file.txt new_file.txt > mysterious.patch
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