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

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.

Awesome Lists containing this project

README

          

# bashmark [![Build Status](https://travis-ci.com/mattdanielbrown/bashmark.svg?branch=master)](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
```