Help for this page

Select Code to Download


  1. or download this
    $ apperlm install-build-deps
    $ apperlm init --name initial_build_config --base full
    $ apperlm checkout initial_build_config
    $ apperlm configure
    $ apperlm build
    
  2. or download this
    $ ./perl.com -v
    
    ...
      Platform:
        osname=cosmo
    ...
    
  3. or download this
    C:\Users\ken\tmp>apperl -v
    
    ...
      Platform:
        osname=cosmo
    ...
    
  4. or download this
    $ ./perl.com -v
    
    ...
      Platform:
        osname=cosmo
    ...
    
  5. or download this
    $ perl -E 'say $^O'
    linux
    ...
    File::Spec::Unix
    $ ./perl.com -E 'use File::Spec; say for @File::Spec::ISA;'
    File::Spec::Unix
    
  6. or download this
    C:\Users\ken\tmp>perl -E "say $^O"
    MSWin32
    ...
    File::Spec::Win32
    C:\Users\ken\tmp>apperl -E "use File::Spec; say for @File::Spec::ISA;"
    File::Spec::Unix
    
  7. or download this
    $ perl -E 'say $^O'
    cygwin
    ...
    File::Spec::Cygwin
    $ ./perl.com -E 'use File::Spec; say for @File::Spec::ISA;'
    File::Spec::Unix
    
  8. or download this
    # Win10
    C:\Users\ken\tmp>apperl --assimilate
    ...
    # Cygwin
    $ ./perl.com --assimilate
    Unrecognized switch: --assimilate  (-h will show valid options).