Skip to content

pablrod/p5-Bat-Interpreter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NAME

Bat::Interpreter - Pure perl interpreter for a small subset of bat/cmd files

VERSION

version 0.024

SYNOPSIS

#!/usr/bin/env perl -w

use 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

METHODS

run

Run the interpreter

BUGS

Please report any bugs or feature requests via github: https://github.com/pablrod/p5-Bat-Interpreter/issues

AUTHOR

Pablo Rodríguez González pablo.rodriguez.gonzalez@gmail.com

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