1.新建 xxc.sh 文件php
在文件中,能夠寫shell命令如python
#!/bin/bash step=99 for (( i=0; i<=step; i++ )); do /usr/local/services/php/bin/php /data/www/crontab/push/cron_apns.php $i > /tmp/push_token 2>&1 done exit 0
其中,> 表示將左邊執行結果覆蓋輸入到右邊文件。>>表示將執行結果追加到右邊文件末尾。shell