-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
23 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,25 @@ | ||
# EasyCli | ||
A cross-platform command line arguments parser and checker | ||
This is a overview about library usage: | ||
https://github.com/IzyaSoft/EasyCli/wiki/How-to-use-EasyCmdLineReader-library | ||
# 1. EasyCli OVERVIEW | ||
A cross-platform command line tool (reading arguments from command line and getting values as string, int or double by key). | ||
Argumnets could be passed either in windows or linux style with possibility to choose separator (i.e. space or =) | ||
` | ||
Linux Style | ||
|
||
This is a full example : | ||
https://github.com/IzyaSoft/EasyCli/wiki/Full-usage-example | ||
./myapp --port=com6 --baudrate=115200 --parity=even --stopbits=2 --flowcontrol=cts | ||
./myapp -if infile.txt -of outfile | ||
|
||
Windows Style | ||
|
||
Nuget package (4 use library in visual studio) : | ||
https://github.com/IzyaSoft/EasyCli/wiki/Nuget-package | ||
package in nuget.org - EasyCmdLineReader | ||
.\myapp.exe \ipAddress 192.168.10.43 \port 4543 \settings mysetting.xml | ||
` | ||
# 2. PROJECT STRUCTURE, TOOLS AND DEPENDENCIES | ||
|
||
# 3. USAGE EXAMPLE | ||
|
||
# 4. NUGET PACKAGE | ||
|
||
https://www.nuget.org/packages/EasyCli/ | ||
Example of how to use could be found in MSVS (project for Visual Studio 2013) -> EasyCliNugetExample | ||
|
||
# 5. CONTRIBUTORS | ||
EvilLord666 (Ushakov Michael) | ||
VeryNiceGuy (Alex Petrov) |