https://github.com/qeesung/dm
directory bookmark manager
https://github.com/qeesung/dm
Last synced: 6 months ago
JSON representation
directory bookmark manager
- Host: GitHub
- URL: https://github.com/qeesung/dm
- Owner: qeesung
- Created: 2017-01-01T10:21:26.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-06T16:27:53.000Z (about 9 years ago)
- Last Synced: 2025-02-12T06:38:32.605Z (11 months ago)
- Language: JavaScript
- Size: 40 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```