diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2016-02-14 18:20:47 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2016-02-14 18:20:47 -0500 |
commit | 32fdf4a8263fd70d86f4e09fee167db5b0bdb27a (patch) | |
tree | a2308addfeaea65ffa3df19ee5241bcc093ba7f8 /README.md | |
parent | 6bb99d8fa7fce2504bf5d5a57629db6b9f5babba (diff) | |
download | bfs-32fdf4a8263fd70d86f4e09fee167db5b0bdb27a.tar.xz |
Makefile: Add install and uninstall targets.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -91,3 +91,28 @@ When `bfs` detects that its output is a terminal, it automatically colors its ou This makes it easier to identify relevant files at a glance. ![Screenshot](http://i.imgur.com/5V6Sxw5.png) + + +Try it! +------- + +To get `bfs`, download one of the [releases](https://github.com/tavianator/bfs/releases) or clone the [git repo](https://github.com/tavianator/bfs). +Then run + + $ make + +This will build the `bfs` binary in the current directory. +You can test it out: + + $ ./bfs -nohidden + +If you're interested in speed, you may want to build the release version instead: + + $ make clean + $ make release + +Finally, if you want to install it globally, run + + $ sudo make install + +If you're on Arch Linux, `bfs` is available in the [AUR](https://aur.archlinux.org/packages/bfs/). |