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

9 lines
164 B
Bash

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