Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

vistahigherlearning / dynamodb-local   deb

Repository URL to install this package:

Version: 1.11.477-1 

/ usr / share / pleaserun / dynamodb-local / install-path.sh

#!/bin/sh

install_path() {
  d="${1##.}"
  if [ ! -z "$d" ] ; then 
    if [ -d "$1" -a ! -d "$d" ] ; then 
      mkdir "$d"
    fi
    if [ -f "$1" ] ; then 
      cp -p "$1" "$d"
    fi
  fi
}

for i in "$@" ; do
  install_path "$i"
done