in reply to Module for accessing samba smbclient command
I don't see a CPAN module offhand, but you might consider a simple-minded approach. What happens if you try
my $output = qx{smbclient -L}; say $output;
In Section
Seekers of Perl Wisdom
in reply to Module for accessing samba smbclient command
I don't see a CPAN module offhand, but you might consider a simple-minded approach. What happens if you try
my $output = qx{smbclient -L}; say $output;