1)脚本 script.sh 内容如下:#!/bin/bashwhile truedo echo "一条信息" >>file.txt sleep 300done 2)赋予可执行权限 chmod +x script.sh 3)后台执行脚本 script.sh &