Skip to main content
summaryrefslogtreecommitdiffstats
blob: a9a2187026cb7184856c3c34331ce49bec3ee2d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh

[ $# -eq 1 ] || { echo "Usage - $0 jetty-dir" >&2 ; exit 1 ; }

cd $1
D=$(pwd)
N=$(basename $D)
D=$(dirname $D)
cd $D

 find $N -type f |\
 egrep -v /\\.svn |\
 egrep -v /target |\
 egrep -v /\\. |\
 egrep -v $N/start.jar |\
 egrep -v $N/lib |\
 egrep -v $N/logs |\
 egrep -v $N/webapp |\
 egrep -v $N/javadoc |\
 xargs zip $D/$N-src.zip $N/logs

 find $N -type f |\
 egrep -v /\\.svn |\
 egrep -v /target |\
 egrep -v /\\. |\
 egrep -v $N/logs |\
 xargs zip $D/$N.zip $N/logs

Back to the top