Skip to content

Instantly share code, notes, and snippets.

@nivag
nivag / findj.sh
Created June 28, 2013 01:01
This bash script recursively find jars containing specified Java classes and packages. It will list all jars and classes it finds.
#!/bin/bash
# findj.sh - recursively find jars containing specified Java classes and packages
#
# This Code is subject to the terms of the Mozilla Public License,
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
# obtain one at http://mozilla.org/MPL/2.0/.
#
# Copyright Gavin C. Flower 2012
# gavinflower@archidevsys.co.nz
#
@nivag
nivag / wildfly_setup.sh
Last active December 19, 2015 02:18
This installs WildFly (or JBoss) Java Enterprise AppServer from a zip (or tar) file into a development environment under Linux, and converts it to using the PostgreSQL database. I have appended terminal output from a recent run. I would like it to be able to add admin & test users as part of the process, instead of interactively later. So if any…
#!/bin/bash
# wildfly_setup.sh
#
# This Code is subject to the terms of the Mozilla Public License,
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
# obtain one at http://mozilla.org/MPL/2.0/.
#
# Copyright Gavin C. Flower
# gavinflower@archidevsys.co.nz
#