Help for this page

Select Code to Download


  1. or download this
    $machine->shell("ls " . $machine->work_dir);
    
  2. or download this
    $machine->shell("ls $machine{work_dir}");
    
  3. or download this
    sub do_ls {
        my $machine = shift;
        $machine->shell("ls $machine{work_dir}");
    }