Description
MFMT Commad does not work on file/path names that have one or more white spaces.
For example if you have a file named "my file.txt", running the MFMT command on this file fails.
To fix this, the MFMT.java needs to be changes as follows:
String[] arguments = argument.split(" "); should be changed to
String[] arguments = arguments.split(" ", 2);