Commit eddba820 by Storm

init

parents
HELP.md
target/
.mvn
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**
!**/src/test/**
### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
### VS Code ###
.vscode/
#!/bin/bash
#echo 'tmp/'$1
tar -xf $1 -C /tmp$2
EXE=/tmp$2/execute.sh
echo $EXE
if [ ! -f $EXE ]; then
echo "exe file not found!"
exit 1
fi
chmod +x $EXE
$EXE /tmp$2
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment