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

おすすめ記事