我的应用程序:
#!/bin/sh
#
# D2GS
#
# Go to the directory
cd ~
# Run the applications
if ! ps aux | pgrep "D2GS"; then
wine "C:/D2GS/D2GS.exe" >& /dev/null &
fi
给出错误:
./d2gs.sh: 14: ./d2gs.sh: 语法错误:错误的 fd 编号
这很奇怪,因为当我开始时wine "C:/D2GS/D2GS.exe" >& /dev/null &
- 它运行没有任何问题。我想从 shell 启动它的原因是,因为我想每分钟 crontab 一次。