Visit my blog or connect with me on Twitter
git init
or
#!/bin/sh | |
# script to change the dynamic lib paths and ids for oracle instant client | |
# exes and libs | |
# REF: http://www.nntp.perl.org/group/perl.dbi.users/2013/04/msg36561.html | |
# proces all the executable files in this directory | |
for exe in sqlplus adrci genezi uidrvci | |
do | |
echo "adjusting executable $exe" |
#!/bin/sh | |
# script to change the dynamic library paths and ids for oracle instant client executables and libraries | |
# REF: http://blog.caseylucas.com/2013/03/03/oracle-sqlplus-and-instant-client-on-mac-osx-without-dyld_library_path/ | |
# proces all the executable files in this directory | |
find . -maxdepth 1 -type f \( -perm -1 -o \( -perm -10 -o -perm -100 \) \) -print | while read exe | |
do | |
echo "adjusting executable $exe" | |
baseexe=`basename $exe` |
Visit my blog or connect with me on Twitter
git init
or
These are the guidelines for contributing to this repository.
File an issue if you think you've found a bug. Please describe the following:
#!/usr/bin/env python | |
import re | |
import unittest | |
import string | |
def isSubstring (s1, s2): | |
# We do the matching | |
result = re.search(s2, s1) |
sudo: false # Migrating from legacy to container-based infrastructure for Travis | |
# Ref: http://docs.travis-ci.com/user/migrating-from-legacy/ | |
language: perl | |
perl: | |
- "5.22" | |
- "5.20" | |
- "5.18" | |
- "5.16" | |
- "5.14" | |
- "5.12" |
name = | |
author = Jonas B. Nielsen <[email protected]> | |
license = Artistic_2_0 | |
copyright_holder = Jonas B. Nielsen | |
[@Basic] | |
[VersionFromModule] | |
[GitHub::Meta] |
#!/bin/bash | |
./Build prereq_report | perl -pi -e 'm/([\w:]+)\s+([\d\.]+)\s+/; if ($1) { print STDERR "requires '\''$1'\''"; print STDERR ", '\''$2'\''" if $2; print STDERR ";\n" }' > /dev/null |
# Courtesy of Jeffrey Ryan Thalhammer | |
# http://search.cpan.org/~thaljef/Test-Perl-Critic/lib/Test/Perl/Critic.pm | |
# The severity parameter interpretation was added by jonasbn | |
# See: http://logiclab.jira.com/wiki/display/OPEN/Test-Perl-Critic | |
use strict; | |
use warnings; | |
use File::Spec; | |
use Test::More; |
use strict; | |
use warnings; | |
use Test::More; | |
eval 'use Test::CPAN::Changes'; | |
plan skip_all => 'Test::CPAN::Changes required for this test' if $@; | |
changes_ok(); |