Skip to content

Commit

Permalink
Move (un)license into README
Browse files Browse the repository at this point in the history
  • Loading branch information
ecridge committed Apr 30, 2016
1 parent bc2dcad commit 7da9a4b
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 32 deletions.
24 changes: 0 additions & 24 deletions LICENSE.md

This file was deleted.

40 changes: 32 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ approach is to keep all your script sources together in one directory (with
descriptive extensions like .sh or .rb) and symlink ‘binary’ versions of them
into your path as necessary.

*binsync* can take care of this for you: for every executable script you place
in `~/src` it will create a corresponding ‘binary’ in `~/bin`. You can control
binsync can take care of this for you: for every executable script you place in
`~/src` it will create a corresponding ‘binary’ in `~/bin`. You can control
which scripts get symlinked simply by the setting of the executable bit on the
source file.

Expand Down Expand Up @@ -50,18 +50,42 @@ source file.
chmod +x binsync.sh
```

4. Run `./binsync.sh` to invoke *binsync* for the first time. *binsync* will
now symlink itself into `~/bin` so that you can call it using `binsync` in
the future.
4. Run `./binsync.sh` to invoke binsync for the first time. binsync will now
symlink itself into `~/bin` so that you can call it using `binsync` in the
future.

5. You’re good to go! Next time you write a script and save it into `~/src`,
you can invoke *binsync* to create an easy access symlink of it for you.
*binsync* will also notify you if you forgot to make the script executable,
you can invoke binsync to create an easy access symlink of it for you.
binsync will also notify you if you forgot to make the script executable,
and will remove any stale symlinks for scripts that you’ve moved or made
non-executable. If you regularly add or remove scripts from `~/src`, you
can have *binsync* automatically run (silently) whenever you open a new
can have binsync automatically run (silently) whenever you open a new
terminal window:

```bash
echo 'binsync > /dev/null' >> ~/.bashrc
```

## License

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute this
software, either in source code form or as a compiled binary, for any purpose,
commercial or non-commercial, and by any means.

In jurisdictions that recognize copyright laws, the author or authors of this
software dedicate any and all copyright interest in the software to the public
domain. We make this dedication for the benefit of the public at large and to
the detriment of our heirs and successors. We intend this dedication to be an
overt act of relinquishment in perpetuity of all present and future rights to
this software under copyright law.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to <http://unlicense.org/>.

0 comments on commit 7da9a4b

Please sign in to comment.