pocket-util
v1.0.1
Published
A simple symlink utility command.
Readme
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
pocket <from> <to>This is roughly equivalent to:
mv <from> <to>
ln -s <to> <from>Install
yarn global add pocket-utilOptions
| Flag | What it does |
|------------|-----------------------------------------|
| --hard, -h | Leaves off the ln command's -s flag |
