diff --git a/LICENSE.md b/LICENSE.md deleted file mode 100644 index cf1ab25..0000000 --- a/LICENSE.md +++ /dev/null @@ -1,24 +0,0 @@ -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 diff --git a/README.md b/README.md index e9d1367..47565a4 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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 .