Guest User

Untitled

a guest
Jan 22nd, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #!/usr/bin/env perl
  2. use warnings;
  3. use 5.014;
  4. use autodie;
  5. use IPC::ShareLite;
  6.  
  7. my $share = IPC::ShareLite->new(
  8. -key => 1971,
  9. -create => 'no',
  10. -destroy => 'no'
  11. ) or die $!;
  12.  
  13. my $str = $share->fetch;
  14.  
  15. print $str, "\n";
Add Comment
Please, Sign In to add comment