universe@37: cline universe@37: _________________________________________ universe@37: Copyright (C) 2013 Mike Becker universe@37: universe@37: Contents: universe@37: 1) About ................................................................... 11 universe@37: 2) Contact Information ..................................................... 23 universe@37: 3) License ................................................................. 29 universe@37: universe@37: universe@37: 1) About ______________________________________________________________________ universe@37: universe@37: cline is a command line tool that counts code lines in your project folder. It universe@37: is designed to recursively find any source file matching specific rules and universe@37: count the line breaks within that file. You may specify file suffixes to include universe@37: or exclude as well as regular expressions for code lines that shall be excluded universe@37: (e.g. to exclude comments). By default a heuristic algorithm skips binary files. universe@37: You may configure the restrictiveness of this algorithm with command line universe@37: options. universe@37: universe@37: Type cline --help for further information. universe@37: universe@37: 2) Contact Information ________________________________________________________ universe@37: universe@37: You can contact us by either one of the following mail addresses: universe@37: universe@uap-core.de - Direct developer contact universe@37: info@uap-core.de - Generic mail address universe@37: universe@37: 3) License ____________________________________________________________________ universe@37: universe@37: Copyright 2013 Mike Becker. All rights reserved. universe@37: universe@37: Redistribution and use in source and binary forms, with or without universe@37: modification, are permitted provided that the following conditions are met: universe@37: universe@37: 1. Redistributions of source code must retain the above copyright universe@37: notice, this list of conditions and the following disclaimer. universe@37: universe@37: 2. Redistributions in binary form must reproduce the above copyright universe@37: notice, this list of conditions and the following disclaimer in the universe@37: documentation and/or other materials provided with the distribution. universe@37: universe@37: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" universe@37: AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE universe@37: IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE universe@37: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE universe@37: FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL universe@37: DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR universe@37: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER universe@37: CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, universe@37: OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE universe@37: OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. universe@37: