mirror of
https://github.com/sigmasternchen/NurseBot
synced 2025-03-15 08:08:58 +00:00
9 lines
182 B
Bash
9 lines
182 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
DEPLOY_DIR=$1
|
||
|
VERSIONS=./versions
|
||
|
|
||
|
ls $DEPLOY_DIR/$VERSIONS/*.jar | while read file; do
|
||
|
echo $file | awk -F"NurseBot" '{ print $2 }' | awk -F".jar" '{ print $1 }'
|
||
|
done
|