Help for this page

Select Code to Download


  1. or download this
    2;0 juerd@ouranos:~/tmp$ echo -n 'Hello, ' | gzip -c > test.gz
    2;0 juerd@ouranos:~/tmp$ echo 'World!' | gzip -c >> test.gz
    2;0 juerd@ouranos:~/tmp$ zcat test.gz
    Hello, World!
    
  2. or download this
    use Some::Module;
    $scalar = compress("Hello, ");
    $scalar .= compress("World!\n");
    print uncompress($scalar); # Hello, World!\n
    
  3. or download this
    2;0 juerd@ouranos:~$ perl -e'undef christmas'
    Segmentation fault
    2;139 juerd@ouranos:~$