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

https://github.com/kellymears/pocket

A simple symlink utility command.
https://github.com/kellymears/pocket

Last synced: 2 months ago
JSON representation

A simple symlink utility command.

Awesome Lists containing this project

README

          

# 🐹 Pocket

## A simple symlink utility command.

Basicaly just shortcuts `mv` && `ln` operations. Defaults to a symbolic link but can be passed a flag to make it a hard link.

## Usage

```sh
pocket
```
This is roughly equivalent to:

```sh
mv
ln -s
```

## Install

```sh
yarn global add pocket-util
```

## Options

| Flag | What it does |
|------------|-----------------------------------------|
| --hard, -h | Leaves off the `ln` command's `-s` flag |