Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/songmu/p5-parse-commandline
https://github.com/songmu/p5-parse-commandline
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/songmu/p5-parse-commandline
- Owner: Songmu
- License: other
- Created: 2014-05-05T17:25:18.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-06-19T03:15:59.000Z (over 10 years ago)
- Last Synced: 2024-11-06T02:09:13.575Z (2 months ago)
- Language: Perl
- Size: 156 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
- License: LICENSE
Awesome Lists containing this project
README
# NAME
Parse::CommandLine - Parsing string like command line
# SYNOPSIS
use Parse::CommandLine;
my @argv = parse_command_line('command --foo=bar --foo');
#=> ('command', '--foo-bar', '--foo')# DESCRIPTION
Parse::CommandLine is a module for parsing string like command line into
array of arguments.# FUNCTION
## `@command_and_argv = parse_command_line($str)`
# LICENSE
Copyright (C) Songmu.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.# AUTHOR
Songmu