Skip to content

Instantly share code, notes, and snippets.

@jewel12
Created January 9, 2014 16:42
Show Gist options
  • Save jewel12/8337413 to your computer and use it in GitHub Desktop.
Save jewel12/8337413 to your computer and use it in GitHub Desktop.
agで検索してpercolで絞り込みエディタで開く
function age() {
if [ $# -eq 1 ]; then
ag --noheading $1 | percol | sed 's/^\(.*\):\(.*\):.*/\1 +\2/' | xargs $EDITOR
else
echo "Usage: age QUERY"
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment