Skip to content

Instantly share code, notes, and snippets.

@MarounMaroun
Created September 5, 2017 13:59
Show Gist options
  • Select an option

  • Save MarounMaroun/0844f4a4baa5648247a45f431199d628 to your computer and use it in GitHub Desktop.

Select an option

Save MarounMaroun/0844f4a4baa5648247a45f431199d628 to your computer and use it in GitHub Desktop.
Interactive grep
#!/bin/bash
if [[ $# -eq 0 ]] ; then
echo "You must provide a keyword to search"
exit 1
fi
mapfile -t options < <(grep -Ir "$1")
PS3="Please enter your choice: "
select opt in "${options[@]}"
do
echo $opt | cut -d':' -f1 | xargs less
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment