Linux에서 시스템을 n번 다시 시작하는 방법 [닫기]

Linux에서 시스템을 n번 다시 시작하는 방법 [닫기]

시스템을 20번 재부팅하는 스크립트를 Linux에서 작성하고 싶습니다. 그런 스크립트를 작성하는 방법은 무엇입니까?

답변1

이상한 부탁이지만…

다음과 같이 넣을 수 있습니다 /etc/init.d/anExecutableScript.

#!/bin/bash
if [ ! -f counter.txt ]; then
  echo 1 > counter.txt
  rebootcount=1
else
  rebootcount=`cat counter.txt`
fi

if [ $rebootcount -lt 20 ]; then 
  echo $((rebootcount+1)) > counter.txt
  reboot -f
else
  rm counter.txt
fi

관련 정보