gCubeActions/16-01-2023-grepkeys/grepkeys.sh

9 lines
180 B
Bash

#!/usr/bin/env bash
out=`find . -name '*.gcubekey' /dev/null {} +`
if [[ -n "${out}" ]]; then
echo "gcubekey found in "
echo "${out}"
else
echo "gcubekey not found"
fi