From 283098578589ac709e111e3a82163bb8913977fd Mon Sep 17 00:00:00 2001 From: Eli Blazku Date: Tue, 13 Aug 2024 18:28:50 +0200 Subject: [PATCH] checking script --- scripts/check_for_key.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 scripts/check_for_key.sh diff --git a/scripts/check_for_key.sh b/scripts/check_for_key.sh new file mode 100755 index 0000000..4bb23e0 --- /dev/null +++ b/scripts/check_for_key.sh @@ -0,0 +1,6 @@ +#! /bin/sh + +if find .ssh/ +then echo "found" +else echo "not found" +fi