From 84e28a567135d260072fd13237b82f8d43318a55 Mon Sep 17 00:00:00 2001 From: Tashrif Billah <35086881+tashrifbillah@users.noreply.github.com> Date: Mon, 11 Dec 2023 11:11:23 -0500 Subject: [PATCH] removing $ sign so users can just copy-paste our commands --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6f7caa2..5403133 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,8 @@ These instructions aim to help both experts and novice `dbxcli` users. Please su 1. Make sure you download and place the binary in a folder that's on your `$PATH`. If you are unsure what this means, go to *step 2*. Otherwise, skip to *step 3* 2. Create a `bin` directory under your home directory. ``` -$ mkdir ~/bin -$ cd ~/bin +mkdir ~/bin +cd ~/bin ``` 3. Add the following line at the end of your `~/.bash_profile` file. [Link with instructions](https://natelandau.com/my-mac-osx-bash_profile/) on how to find this file ```sh @@ -36,12 +36,12 @@ export PATH=$PATH:$HOME/bin ``` 4. Download the `dbxcli` binary for OSX and rename it. *IMPORTANT:* Check that the tag `v2.1.1` on the URL below is the latest release tag on the [Releases](https://github.com/dropbox/dbxcli/releases) page. ```sh -$ wget https://github.com/dropbox/dbxcli/releases/download/v2.1.1/dbxcli-darwin-amd64 -$ mv dbxcli-darwin-amd64 dbxcli +wget https://github.com/dropbox/dbxcli/releases/download/v2.1.1/dbxcli-darwin-amd64 +mv dbxcli-darwin-amd64 dbxcli ``` 5. Finally, make the binary an executable file and you are good to go! ``` -$ chmod +x dbxcli +chmod +x dbxcli ``` ### Instructions for building yourself