Help for this page

Select Code to Download


  1. or download this
    package GetRidOfOracle;
    
    ...
    @INC=grep { !isOracleDirectory($_) } @INC; 
    
    1;
    
  2. or download this
    #!/usr/bin/perl
    # ^- Change perl path and parameters as needed
    ...
    # For a demo, set PERL5LIB as Oracle would do, then run this script.
    # No Oracle directory should be printed as long as GetRidOfOracle is l
    +oaded.
    say for @INC;
    
  3. or download this
    #!/usr/bin/perl
    # ^- Change perl path and parameters as needed
    ...
    # For a demo, set PERL5LIB as Oracle would do, then run this script.
    # No Oracle directory should be printed as long as GetRidOfOracle is l
    +oaded.
    print "$_\n" for @INC;