-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Usage and installation added. * URL prefix problem fixed. Signed-off-by: Gökhan Özeloğlu <[email protected]>
- Loading branch information
Showing
3 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,45 @@ | ||
# bm-go | ||
|
||
New version of the [bm](https://github.com/gozeloglu/bm) tool written in Go. | ||
|
||
## Installation | ||
|
||
You can type the following command. | ||
|
||
```shell | ||
go install github.com/gozeloglu/bm-go@latest | ||
``` | ||
|
||
## Usage | ||
|
||
Currently, limited commands are provided. | ||
|
||
### Save new bookmark | ||
|
||
```shell | ||
bm --save https://google.com | ||
``` | ||
|
||
### List all bookmarks | ||
|
||
```shell | ||
bm --list | ||
``` | ||
|
||
### Delete the bookmark | ||
|
||
```shell | ||
bm --delete 3 # deletes the 3rd bookmark | ||
``` | ||
|
||
### Update the bookmark link | ||
|
||
```shell | ||
bm --update 3 https://github.com # updates the 3rd link with new one, github.com in that example | ||
``` | ||
|
||
### Open link on the browser | ||
|
||
```shell | ||
bm --open 3 # opens 3rd link on the default browser | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters