http://www.perlmonks.org?node_id=217438

   1: # I didn't know about the node 104334

   2: # when this came to my mind

   3: # I think it is interesting

   4: 

   5: $dot = pop @INC;         # a dot marks the end of @INC

   6: push @INC, $your_path;   # so you add you path

   7: push @INC, $dot;         # and put it back

   8: 

   9: use AnythingFromThePath; # and use your stuff