mirror of
https://gitee.com/y_project/RuoYi-Cloud.git
synced 2026-01-26 03:44:57 +08:00
9 lines
109 B
Bash
9 lines
109 B
Bash
#! /bin/bash
|
|
for dir in $(ls .)
|
|
do
|
|
if [[ -f $dir/project-*.jar ]];then
|
|
./$dir/project-*.jar &
|
|
fi
|
|
|
|
done
|