#!/bin/bash WORK_DIR="$1"; REPO_DIR="$2"; DEST_DIR="$3"; cd "$REPO_DIR"; npm install; cp -rv lib "$DEST_DIR"; cd "$WORK_DIR";