https://git.spwbk.site/swatson/perl-shellex/raw/master/install.sh
___________________________________
#!/bin/bash

libDir="/usr/local/lib/Shellex/"

if [ ! -d $libDir ]; then
       echo "Making $libDir"
       sudo mkdir -p $libDir
fi

echo "Calling sudo to copy libs"
sudo cp ./lib/Shellex/* $libDir