while true; do command; done;
examples:
1.循环执行 ls -l 命令:
auto_run_ls.sh file:
#!/bin/sh
while true; do ls -l; done;
2.循环运行 test_app 可执行程序:
auto_run.sh file:
#!/bin/sh
while true; do ./test_app; done;
while true; do command; done;
examples:
1.循环执行 ls -l 命令:
auto_run_ls.sh file:
#!/bin/sh
while true; do ls -l; done;
2.循环运行 test_app 可执行程序:
auto_run.sh file:
#!/bin/sh
while true; do ./test_app; done;