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

9 lines
160 B
Bash

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