mirror of
https://github.com/wassname/segpy.git
synced 2026-06-27 20:22:56 +08:00
15 lines
189 B
Bash
Executable File
15 lines
189 B
Bash
Executable File
#!/bin/sh
|
|
VERSION=0.3
|
|
|
|
DIR=segypy-$VERSION
|
|
|
|
mkdir $DIR
|
|
cp segypy.py $DIR/.
|
|
cp testsegy.py $DIR/.
|
|
cp LICENSE $DIR/.
|
|
cp README $DIR/.
|
|
|
|
zip -r $DIR.zip $DIR
|
|
tar cvfz $DIR.tgz $DIR
|
|
|
|
rm -fr $DIR |