random-data-generator
is a command line program that outputs a configurable amount of random data, containing a configurable amount of fields.
The easiest way to run this program is by cloning the main branch and building it as an Xcode project. Command line arguments may be configured:
Product > Scheme > Edit Scheme... > Run > Arguments
Important
Requires GNU Make.
The following should build and run the program on Linux and macOS systems:
git clone -b unix --single-branch https://github.com/jacob-thompson/random-data-generator.git
cd random-data-generator
make
./random-data-generator
Important
Requires GNU Make.
The following commands should build and run the program on Windows systems:
git clone -b windows --single-branch https://github.com/jacob-thompson/random-data-generator.git
cd random-data-generator
make
random-data-generator.exe
The following argument configures the amount of data entries generated by the program:
-c <INT>
Warning
Ensure that <INT> >= 0
.
Output fields may be configured using the following arguments:
First name: -f
Middle name: -m
Last name: -l
Geolocation: -g
Email: -e
Phone number: -p
Tip
If there are no output field arguments provided, then all of the fields will be written into the output.
Distributed under the MIT License. See LICENSE for more information.
Jacob Alexander Thompson - [email protected]