我有 2 个文件:
images1.txt
--file1
--file2
--file5
--file6
--file7
images2.txt
--file1
--file5
--file6
我需要创建具有预期结果的文件 images_to_delete.txt:
images_to_delete.txt
--file2
--file7
我知道我可以用 bash 使用命令来做到这一点:
awk 'NR==FNR{a[$0];next}!($0 in a)' images2.txt images1.txt > images_to_delete.txt
有没有可能在不使用 shell_exec 的情况下在 PHP 中执行此操作?
谢谢你。