... a built-in repeat command. You could use that to execute your command in a bash sub-shell! ... x=10; while [ $x -gt 0 ]; do command; x=$(($x-1)); done.
確定! 回上一頁