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

9 lines
160 B
Bash
Raw Normal View History

2023-01-16 16:48:08 +01:00
#!/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