以下在命令提示符下按预期工作。但它不适用于 cron。
# echo "test abc xyz" | grep "test1 \| pqr"
# echo "test abc xyz" | grep "test \| pqr"
test abc xyz
当我在 cron 中使用这个语句时,我需要转义某些字符。但我无法弄清楚。
以下在命令提示符下按预期工作。但它不适用于 cron。
# echo "test abc xyz" | grep "test1 \| pqr"
# echo "test abc xyz" | grep "test \| pqr"
test abc xyz
当我在 cron 中使用这个语句时,我需要转义某些字符。但我无法弄清楚。
当我试图将它放入 cron 时,我没有看到任何问题。您是否正在尝试执行以下操作: