Last active
June 28, 2023 11:43
-
-
Save NickSdot/2d1a4d6834be1bcde596f62ecddedaee to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function mysql() { | |
read -p "Champ, are you aware that you are in production? (y/N): " confirm | |
if [[ "$confirm" =~ ^[Yy]$ ]]; then | |
command mysql "$@" | |
else | |
echo "Command execution canceled. Next beer is on you." | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment