Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pablrod/p5-bat-interpreter
Bat/CMD file interpreter
https://github.com/pablrod/p5-bat-interpreter
cmd interpreter
Last synced: 3 days ago
JSON representation
Bat/CMD file interpreter
- Host: GitHub
- URL: https://github.com/pablrod/p5-bat-interpreter
- Owner: pablrod
- License: other
- Created: 2017-04-02T18:04:55.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-11-08T09:29:06.000Z (about 2 years ago)
- Last Synced: 2023-08-20T23:13:08.224Z (about 1 year ago)
- Topics: cmd, interpreter
- Language: Perl
- Size: 88.9 KB
- Stars: 3
- Watchers: 4
- Forks: 5
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
- License: LICENSE
Awesome Lists containing this project
README
# NAME
Bat::Interpreter - Pure perl interpreter for a small subset of bat/cmd files
# VERSION
version 0.024
# SYNOPSIS
```perl
#!/usr/bin/env perl -wuse 5.014;
use Bat::Interpreter;my $interpreter = Bat::Interpreter->new;
$interpreter->run('basic.cmd');
say join("\n", @{$interpreter->executor->commands_executed});
```# DESCRIPTION
Pure perl interpreter for a small subset of bat/cmd files.
[![Build status](https://ci.appveyor.com/api/projects/status/xi8e6fjjxwfp77th/branch/master?svg=true)](https://ci.appveyor.com/project/pablrod/p5-bat-interpreter/branch/master)
# METHODS
## run
Run the interpreter
# BUGS
Please report any bugs or feature requests via github: [https://github.com/pablrod/p5-Bat-Interpreter/issues](https://github.com/pablrod/p5-Bat-Interpreter/issues)
# AUTHOR
Pablo Rodríguez González
# COPYRIGHT AND LICENSE
This software is Copyright (c) 2020 by Pablo Rodríguez González.
This is free software, licensed under:
```
The MIT (X11) License
```# CONTRIBUTORS
- eva.dominguez
- Eva
- juanradiego
- Nicolas De los Santos
- pablo.rodriguez
- ricardo.gomez
- Toby Inkster