#!/usr/bin/perl

use strict;

my $tmp = "cat man_page.asd 2>/dev/null";

my @test = split( /\ /, $tmp, 2 );

print "$test[0]\n";
print "$test[1]\n";
