////////////////////////////////////////////////////////////////////////////////
// AML File Generator v0.1 - A Simple Random Content File Generator
// Author	:Mikael Fernandus Simalango (http://tech.amikelive.com)
// Licensed under MIT
////////////////////////////////////////////////////////////////////////////////

AML file generator is a command line-based PHP utility with capability to generate 
file of arbitrary size ranging from Bytes to MBytes. The generated file will be 
filled with random alpha numeric ASCII characters.

This utility can be useful for those who are learning how to write a command
line-based PHP utility and also for others who want to conveniently generate 
files of various sizes for workload testing purpose.

To run the application, you need to have PHP installed on your system. Please
consult with the online PHP manual to get more information about the installation
and configuration.

Current version of AML file generator contains these flags :
-s [filesize]	Specifies the desired file size of the output file
-d [output_dir]	An optional flag to specify the directory of the output file.
				If this flag is not supplied, files will be created in the 
				same directory with the filegenerator.php file
-f [file_name]	An optional flag to specify the desired name of output file. 
				If this flag is not supplied, the application will generate a
				unique name everytime it is executed.
--override		An optional flag to let the application to override existing files
				instead of creating a unique new one.