icloud_photos_downloader/scripts/npx_optional

11 lines
177 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
if [ `which npx` ]; then
echo "test icloudpd..." &&
npx ${@:3} 1>$1 &&
cat $1
else
echo "No npx available"
touch $2
fi