我想用 bash 编写启动脚本,以使 ubuntu 盒子对爷爷更友好。
脚本应该:
打开 chrome 等到 chrome 关闭 关闭计算机
到目前为止我有
#!/bin/bash
if [ -z "$1" ]; then
address="http:\\www.google.co.uk"
else
address=$1
fi
echo starting the internet
google-chrome $address
while [ 1=1 ];
do
grep_resp=$(ps aux | grep chrome)
if [ -z "$grep_resp" ]; then
echo turning computer off
else
echo chrome still running
fi
sleep 5
done
但“chrome”的 grep 在进程列表中
有什么帮助吗?