mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-09 10:12:20 +00:00
20 lines
272 B
Bash
20 lines
272 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
if [ -d "tmp" ]; then
|
||
|
rm -rf tmp
|
||
|
fi
|
||
|
|
||
|
mkdir tmp
|
||
|
cp originals/web.zip tmp
|
||
|
cd tmp
|
||
|
unzip web.zip
|
||
|
mv wherehows-* wherehows
|
||
|
|
||
|
# some may wish to remove the docs
|
||
|
# rm -rf wherehows/share
|
||
|
|
||
|
rm README.md
|
||
|
|
||
|
tar zcvf web.tar.gz wherehows
|
||
|
|
||
|
cp web.tar.gz ../../web/archives
|