Skip to content

Commit

Permalink
docs: use --output dupsifter instead of mv
Browse files Browse the repository at this point in the history
  • Loading branch information
jamespeapen committed Mar 5, 2024
1 parent c810ac0 commit 91bdaaf
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions docs/install.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,13 @@ All releases are available on [GitHub](https://github.com/huishenlab/dupsifter/r
Precompiled binaries are available for macOS and Linux:
```bash
# macOS
curl -OL $(curl -s https://api.github.com/repos/huishenlab/dupsifter/releases/latest |
grep browser_download_url | grep darwin_amd64 | cut -d '"' -f 4)
mv dupsifter_* dupsifter
curl -L $(curl -s https://api.github.com/repos/huishenlab/dupsifter/releases/latest |
grep browser_download_url | grep darwin_amd64 | cut -d '"' -f 4) --output dupsifter
chmod +x dupsifter

# Linux
curl -OL $(curl -s https://api.github.com/repos/huishenlab/dupsifter/releases/latest |
grep browser_download_url | grep linux_amd64 | cut -d '"' -f 4)
mv dupsifter_* dupsifter
curl -L $(curl -s https://api.github.com/repos/huishenlab/dupsifter/releases/latest |
grep browser_download_url | grep linux_amd64 | cut -d '"' -f 4) --output dupsifter
chmod +x dupsifter
```

Expand Down

0 comments on commit 91bdaaf

Please sign in to comment.