HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: //usr/share/pleaserun/ndn-procwatch4-exporter-service/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