Proc::Screen:: - create and/or manipulate GNU screen sessions
NAME
Proc::Screen:: - create and/or manipulate GNU screen sessions
SYNOPSIS
  use Proc::Screen;
  # Start a new screen session
  my $s = Proc::Screen.new();
  $s.start;
  # Send a command to the session (this one dumps a screenshot to a file)
  $s.command("hardcopy","/tmp/foobar.txt");
  # Query for information about the session syncronously
  $s.query("info").say;
  # Query for information about the session asyncronously
  my $out;
  $s.query("info", :$out).then({ "Screen info: $out".say });