Using a Counter in a Script #l/bin/bash counter=1 while true do counter=$((counter + 1)) echo counter is set to $counter done As you can see, this script ...
確定! 回上一頁