in reply to Run a shell command in a new terminal from a perl script?

#!/usr/bin/perl use strict; use warnings; system('gnome-terminal -x sh -c "ls|less"');
is this what u want . sweet and simple (p.s i m a new to this things)

Replies are listed 'Best First'.
Re^2: Run a shell command in a new terminal from a perl script?
by harishnv (Sexton) on Feb 18, 2018 at 11:15 UTC
    can you explain more about the code written