Help for this page

Select Code to Download


  1. or download this
    john@ubuntu:~/perl-5.10.1$./Configure -des -Dprefix=/opt/perl
    john@ubuntu:~/perl-5.10.1$make
    john@ubuntu:~/perl-5.10.1$make test
    john@ubuntu:~/perl-5.10.1$make install
    
  2. or download this
    john@ubuntu:~$cd /opt
    john@ubuntu:~$sudo mkdir perl
    john@ubuntu:~$sudo chmod 777 perl
    
  3. or download this
    john@ubuntu:~$cd /usr/local/bin
    john@ubuntu:~$sudo ln -isv /opt/perl/bin/perl perl
    
  4. or download this
    john@ubuntu:~$ls -l /usr/local/bin/perl
    lrwxrwxrwx 1 root root 18 2010-02-28 10:50 /usr/local/bin/perl -> /opt
    +/perl/bin/perl
    
  5. or download this
    john@ubuntu:~$/usr/local/bin/perl -e 'print "$]\n";'
    5.010001
    john@ubuntu:~$/usr/bin/perl -e 'print "$]\n";'
    5.008008
    
  6. or download this
    john@ubuntu:~$perl -e 'print "$]\n";'
    5.008008
    
  7. or download this
    john@ubuntu:~$sudo perl -e 'print "$]\n";'
    5.010001
    
  8. or download this
    john@ubuntu:~$echo $PATH
    /usr/local/bin: ... /usr/bin: ...