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.
- Host: GitHub
- URL: https://github.com/kellymears/pocket
- Owner: kellymears
- Created: 2020-03-06T01:15:24.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-06T03:25:22.000Z (over 6 years ago)
- Last Synced: 2025-02-19T18:03:04.140Z (over 1 year ago)
- Language: JavaScript
- Size: 12.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 |