scripts/confirm-important.sh
PlexSheep 71f31bc645
tons of little scripts
Signed-off-by: PlexSheep <software@cscherr.de>
2025-01-23 11:12:51 +01:00

9 lines
176 B
Bash

#!/bin/bash
echo "Write 'yes do as i say' to confirm that you REALLY want to do this: $@"
read
if [[ "${REPLY,,}" = "yes do as i say" ]]
then
eval $@
else
echo "aborting"
fi