Skip to content

Instantly share code, notes, and snippets.

@sourab-jadav
sourab-jadav / fuzzyFindCommands.sh
Created June 8, 2024 08:47
fuzzy finds through the commands
#!/bin/bash
# Path to the commands file
COMMANDS_FILE=~/commands.txt
# Check if the commands file exists
if [[ ! -f $COMMANDS_FILE ]]; then
echo "Commands file not found!"
exit 1
fi