Are these kind of check scripts somewhere available to all? It seems to me
that such a set would benefit many (as in: many hands make light work).


Best regards,

Pierre Smits

*Apache Trafodion <https://trafodion.apache.org>, Vice President*
*Apache Directory <https://directory.apache.org>, PMC Member*
Apache Incubator <https://incubator.apache.org>, committer
*Apache OFBiz <https://ofbiz.apache.org>, contributor (without privileges)
since 2008*
Apache Steve <https://steve.apache.org>, committer

On Mon, Sep 10, 2018 at 3:46 AM, Justin Mclean <jus...@classsoftware.com>
wrote:

> Hi,
>
> > Great, some of these are accomplished by one line commands, maybe would
> be
> > good to add those into the checklist as well.
>
> Mostly, but It's going to vary from project to project depending on on the
> build process and technology and a lot of it is manual observation.  We
> could possibly come up with a list for Java projects which may be helpful.
>
> I do use some tools / simple scripts to help me and speed up the process
> but they only mostly save me a little typing.
>
> For instance:
>
> function rat() {
>   java -Xms1024m -Xmx1024m -jar 
> ~/Downloads/apache-rat-0.11/apache-rat-0.11.jar
> $1
> }
>
> function search() {
>   find . -type f -exec grep -i "$1" {} \; -print
> }
>
> function verify() {
>  for file in *.asc; do gpg --verify $file; done
> }
>
> function sha512() {
>  for arg in $*; do shasum -a 512 $arg; done
> }
>
> function untxt() {
>  find . -name '*.txt' | while read f; do mv "$f" "${f/\.txt/}"; done
> }
>
> And I usually do stuff like this on a release:
> grep “ B  “ rat.txt | grep -v “\.png” | grep -v ...
> search copyright | sort -u > copy.txt
> search GPL
> search BSD
>
> Thanks,
> Justin
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
> For additional commands, e-mail: general-h...@incubator.apache.org
>
>

Reply via email to