http://qs1969.pair.com?node_id=762248
Category: code
Author/Contact Info none
Description: none

sub make_command 
{
    my @arr          = @_;
    for (@arr) 
    {
        $_ = qq["$_"] if /\s/;
    } 
    my $_command_to_execute = join(' ',@arr);
    return ($_command_to_execute);
}