3 रिपॉजिटरी
Implementation of command-line interfaces following the standard POSIX conventions for flags and arguments.
Distinct from POSIX Shell Utilities: Focuses on the implementation of the interface standard for tools, not just compliant shell scripts or examples.
Explore 3 awesome GitHub repositories matching operating systems & systems programming · POSIX CLI Compliance. Refine with filters or upvote what's useful.
Docopt is a command-line argument parser and declarative interface tool that converts raw terminal input into a structured data map. It derives its parsing logic and requirements directly from a standardized POSIX-style help message, using the documentation as the formal specification for the interface. The system implements a POSIX usage pattern parser to translate human-readable help strings into rules for extracting options and positional arguments. It automatically generates help screens and version information based on the internal usage patterns defined by the user. The tool ensures a
Creates command line tools that follow standard POSIX conventions for flags and arguments.
This library is a .NET command line parser for C# and F# that implements POSIX getopt conventions to map shell arguments into strongly typed objects. It provides a framework for building console applications that process Unix-style flags and options. The project features a routing system that directs program execution based on action-oriented verbs, supporting sub-commands and default actions. It includes an automatic help generator that produces localized usage instructions and formatted help screens based on the defined command options. The toolset covers argument parsing with strongly typ
Implements a .NET parser following standard POSIX conventions for command-line flags and arguments.
Meow is a Node.js command line argument parser that converts raw input strings into structured objects. It functions as a tool for processing flags and positional arguments according to POSIX and shell conventions. The library provides a system for enforcing required arguments and verifying data types for command line inputs. It also serves as a helper for managing version strings, help menus, and subcommand routing within terminal applications. The project covers the broader surface of command line interface development, including input validation and the direction of execution paths via ke
Processes named arguments and positional inputs following standard POSIX shell conventions.