bash shell 10回実行

#!/bin/bash

check() {
echo -- `date`
}

for i in {1..10}
do
echo "count" $i
check
sleep 10
done

exit 0

コメント

人気の投稿