File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,24 @@ brew install ld-find-code-refs
3232
3333You can now run ` ld-find-code-refs ` .
3434
35+ #### Linux
36+ We do not yet have repositories set up for our linux packages, but we do upload deb and rpm packages with our github releases.
37+
38+ ##### Ubuntu
39+ This shell script can be used to download and install ` ag ` and ` ld-find-code-refs ` on Ubuntu.
40+
41+ ``` shell
42+ apt-get install silversearcher-ag
43+
44+ wget -qO- https://api.github.com/repos/launchdarkly/ld-find-code-refs/releases/latest \
45+ | grep " browser_download_url" \
46+ | grep " amd64.deb" \
47+ | cut -d' "' -f4 \
48+ | wget -qi - -O ld-find-code-refs.amd64.deb
49+
50+ dpkg -i ld-find-code-refs.amd64.deb
51+ ```
52+
3553#### Manual
3654
3755Precompiled binaries for the latest release can be found [ here] ( https://github.com/launchdarkly/ld-find-code-refs/releases/latest ) .
You can’t perform that action at this time.
0 commit comments