目录

工欲善其事

实践出真知

活跃标签: linux java mysql 待分类 js springboot win10 电路 vue macOS nginx esp32 windows git docker idea maven esp8266 python Arduino

存档:

X

[ Bash ] 命令进阶

实时执行命令

 while :; do clear; ls -lh; sleep 1; done

中间为执行命令,后端是间隔时间

实时脚本

如下,批量启动脚本命令

for j in *; do nohup java -jar $j --spring.profiles.active=test > $j.log 2>&1 & done

标题:[ Bash ] 命令进阶
作者:llilei
地址:http://solo.llilei.work/articles/2023/07/02/1688261689668.html