dgiot/scripts/find-props.sh

18 lines
420 B
Bash
Raw Normal View History

2021-05-18 14:54:48 +08:00
#!/usr/bin/env bash
## this script prints out all test/props/prop_*.erl files of a given app,
## file names are separated by comma for proper's `-m` option
set -euo pipefail
# ensure dir
cd -P -- "$(dirname -- "$0")/.."
2021-09-11 12:02:55 +08:00
echo "find props"
exit 0
2021-05-18 14:54:48 +08:00
BASEDIR="."
if [ "$1" != "emqx" ]; then
BASEDIR="$1"
fi
find "${BASEDIR}/test/props" -name "prop_*.erl" 2>/dev/null | xargs -I{} basename {} .erl | xargs | tr ' ' ','