我正在尝试通过 Laravel 调度程序每天从我的服务器上擦除敏感的历史命令
当我运行此代码时:
$schedule->exec(`for h in $(history | grep mysql | awk '{print $1-N}' | tac) ; do history -d $h ; done; history -d $(history | tail -1 | awk '{print $1}') ; history`)->{$interval}()->emailOutputTo($email)->environments('prod');
我收到此错误:
⚡️ app2020 php artisan schedule:run
ErrorException
Undefined variable: h
at app/Console/Kernel.php:44
注意到这是一个完美的工作命令
for h in $(history | grep mysql | awk '{print $1-N}' | tac) ; do history -d $h ; done; history -d $(history | tail -1 | awk '{print $1}') ; history
注意: 我知道我可以通过将上面的命令添加到 crontab 来实现它,但目标是让所有 cron 活动组织在 Laravel 项目中
既然 bash 和 PHP 使用$
它们的变量,那么如何超越并使类似的 bash 命令起作用?