15 lines
434 B
Bash
Executable File
15 lines
434 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [[ "${1}" == "latest" ]]; then
|
|
echo "param.sh: $1"
|
|
fi
|
|
|
|
|
|
#[ -d ~/.kymsu/plugins.d -a -x ~/.kymsu/plugins.d ] && find ~/.kymsu/plugins.d -type f -name '*.sh' -perm +u+x -exec bash -c {} ${1:no-cleanup} \;
|
|
|
|
find . -type f -name '_mas_test.sh' -perm +u+x -exec bash -c {} $1 \;
|
|
|
|
#/Users/bruno/Documents/Scripts/_test/_mas_test.sh $1
|
|
|
|
#find ~/.kymsu/plugins.d -type f -name '_m*.sh' -perm +u+x | xargs exec "$1" ;
|