An open API service indexing awesome lists of open source software.

https://github.com/qeesung/dm

directory bookmark manager
https://github.com/qeesung/dm

Last synced: 6 months ago
JSON representation

directory bookmark manager

Awesome Lists containing this project

README

          

# dm

directory bookmark manager, you can add, remove, list, udpate, checkout , search your own bookmarks for directories. your can change directory quickly

## usage

### add

add a bookmark for a directory

```bash
dm add [path] [-l ]
```

- name : bookmark name , **required**
- path : bookmark path, **optional**,default is current direcotry run the command
- -l : bookmarks category, used to classify, **optional**,default is `default` label

examples:

```bash
dm add b1 # add current directory as bookmark 'b1' with 'default' label
dm add tmp /tmp # add '/tmp' directory as bookmark 'tmp' with 'default' label
dm add work /mnt/disk1 -l test # add '/mnt/disk' as bookmark 'work' with 'test' label
```