Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ SYNOPSIS
# $cmd is basically a hash, with keys / accessors
$cmd->stdin(); # filehandle to the process stdin (write)
$cmd->stdout(); # filehandle to the process stdout (read)
$cmd->stderr(); # filehandle to the process stdout (read)
$cmd->stderr(); # filehandle to the process stderr (read)
$cmd->pid(); # pid of the child process

# done!
Expand Down Expand Up @@ -68,7 +68,7 @@ You can also look for information at:
http://cpanratings.perl.org/d/System-Command

Search CPAN
http://search.cpan.org/dist/System-Command/
https://metacpan.org/pod/System::Command/


LICENSE AND COPYRIGHT
Expand Down
4 changes: 2 additions & 2 deletions lib/System/Command.pm
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ System::Command - Object for running system commands
# $cmd is basically a hash, with keys / accessors
$cmd->stdin(); # filehandle to the process stdin (write)
$cmd->stdout(); # filehandle to the process stdout (read)
$cmd->stderr(); # filehandle to the process stdout (read)
$cmd->stderr(); # filehandle to the process stderr (read)
$cmd->pid(); # pid of the child process

# find out if the child process died
Expand Down Expand Up @@ -793,7 +793,7 @@ L<http://cpanratings.perl.org/d/System-Command>

=item * Search CPAN

L<http://search.cpan.org/dist/System-Command/>
L<http://metacpan.org/pod/System::Command/>

=back

Expand Down