Skip to content

Instantly share code, notes, and snippets.

@rasmusmerzin
Last active January 7, 2021 08:16
Show Gist options
  • Save rasmusmerzin/f22469037999c35cce1319f33d8880d4 to your computer and use it in GitHub Desktop.
Save rasmusmerzin/f22469037999c35cce1319f33d8880d4 to your computer and use it in GitHub Desktop.
#!/bin/bash
# inspect codebase for occurances
keyword=$1
shift
eval $(
grep "$keyword" "$@" -n | while read -r line
do
fl=${line%%:*}
ln=${line#*:}
ln=${ln%%:*}
echo "vim +$ln $fl -R"
done | paste -sd';'
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment