package Foo; use strict; sub pdftotext { my $self = shift; my $args = join ' ', @_; my $output = qx{/usr/bin/pdftotext $args}; } 1;