We are seeing an older version of a class being used, although we had the latest one deploy. To scan all JAR files in all subfolders of an application server, how do we writ
#! /bin/sh path=$1 segment=$2 if [ -z "$path" ] || [ -z "$segment" ] then echo "Usage: $0 " exit fi for jar in $path/*.jar ; do echo " *** $jar *** " ; jar tf $jar| grep --color=always $segment; done;