怎么用shell写一个死循环?

2024-12-04 13:36:17
推荐回答(2个)
回答1:

#!/bin/bash

while : ;
do
    echo "aaa"
done

回答2:

while true
do
done