Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my $fullPath =
       File::Spec->catfile( $pathFromConfig, $fileFromConfig );
    print qq{$fullPath\n};
    
  2. or download this
    $ cat spw750353.ini 
    myfile=bbbbbbb.txt
    path=aaaaaaaaaaaaaaa
    $
    
  3. or download this
    C:\cygwin\home\johngg\perl\Monks>type spw750353.ini
    myfile=bbbbbbb.txt
    path=aaaaaaaaaaaaaaa
    
    C:\cygwin\home\johngg\perl\Monks>
    
  4. or download this
    $ ./spw750353
    aaaaaaaaaaaaaaa/bbbbbbb.txt
    
    $
    
  5. or download this
    C:\cygwin\home\johngg\perl\Monks>perl spw750353
    aaaaaaaaaaaaaaa\bbbbbbb.txt
    
    C:\cygwin\home\johngg\perl\Monks>