https://github.com/mattdanielbrown/bashmark
A bookmark system (sort of) for the commandline. Save locations (paths) and easily get back to them later.
https://github.com/mattdanielbrown/bashmark
bash bookmark bookmark-manager bookmarks cli command-line nodejs shell terminal terminal-based
Last synced: 3 months ago
JSON representation
A bookmark system (sort of) for the commandline. Save locations (paths) and easily get back to them later.
- Host: GitHub
- URL: https://github.com/mattdanielbrown/bashmark
- Owner: mattdanielbrown
- License: mit
- Created: 2020-11-13T22:34:39.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2026-01-30T12:06:02.000Z (5 months ago)
- Last Synced: 2026-01-31T04:59:52.173Z (5 months ago)
- Topics: bash, bookmark, bookmark-manager, bookmarks, cli, command-line, nodejs, shell, terminal, terminal-based
- Language: JavaScript
- Homepage:
- Size: 1.12 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# bashmark [](https://travis-ci.com/github/mattdanielbrown/bashmark)
> A bookmarking system (sort of) for the commandline. Save locations (paths) and easily get back to them later.
## Install
```
$ npm install bashmark
```
## Usage
```js
const bashmark = require('bashmark');
bashmark('unicorns');
//=> 'unicorns & rainbows'
```
## API
### bashmark(input, options?)
#### input
Type: `string`
Lorem ipsum.
#### options
Type: `object`
##### foo
Type: `boolean`\
Default: `false`
Lorem ipsum.
## CLI
```
$ npm install --global bashmark
```
```
$ bashmark --help
Usage
bashmark [input]
Options
--foo Lorem ipsum [Default: false]
Examples
$ bashmark
unicorns & rainbows
$ bashmark ponies
ponies & rainbows
```