Skip to content

tkengo/highway

Folders and files

NameName
Last commit message
Last commit date

Latest commit

350e1c2 Â· Apr 4, 2016
Nov 3, 2015
Mar 31, 2016
Oct 22, 2015
Sep 24, 2015
Oct 22, 2015
Oct 10, 2015
Oct 26, 2015
Oct 20, 2015
Oct 16, 2015
Nov 3, 2015
Oct 16, 2015

Repository files navigation

Highway

A fast pattern matching tool like pt and ag.

Features

  • It can search the PATTERN from your source code very fast.
  • It can search also the PATTERN as a regular expression.
  • It supports UTF-8 and some Japanese encodings (Because I'm Japanese 😋 EUC-JP and Shift_JIS is supported).
  • It ignores file patterns form your .gitiginore by default.

Installation

For OS X

$ brew tap tkengo/highway
$ brew install highway

For Fedora Core

$ sudo vi /etc/yum.repos.d/highway.repo
[repos.highway]
name=highway
baseurl=http://tkengo.github.io/highway/fedora
enabled=0
gpgcheck=0

$ sudo yum install highway --enablerepo="repos.highway"

Usage

# You can search PATTERN from current directory recursively.
$ hw PATTERN

# You can specify options and some paths.
$ hw OPTIONs PATTERN PATHs

# You can check options
$ hw -h

Building from source

Install building dependencies

  • gperftools
  • autoconf
  • automake

Run follow commands

$ git clone git@github.com:tkengo/highway.git
$ cd highway
$ ./tools/build.sh

And then, the binary named hw is created in highway's root directory.

License

The MIT License (MIT)

Copyright (c) 2015 Kengo Tateishi