repo.or.cz
/
svn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Reorganize the output to "svnserve --help".
[svn.git]
/
tools
/
dist
/
extract-for-examination.sh
blob
cfa3af32ba1ddf37b2bddd29d31fe6b001b73151
1
#!/bin/sh
2
3
for
i
in
*
.
tar
.bz2
;
do
4
base
=
${i%.tar.bz2}
-tar-bz2
5
mkdir
$base
6
cd
$base
7
tar
-jxvf
..
/
$i
8
cd
..
9
done
10
11
for
i
in
*
.
zip
;
do
12
base
=
${i%.zip}
-zip
13
mkdir
$base
14
cd
$base
15
unzip
..
/
$i
16
cd
..
17
done