Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 PHP 中为 linux 命令使用 exec“包装器”:
exec("unzip -oj tmp.zip -d tmp && rm tmp.zip");
请告诉我如何将文件名中的空格转换为下划线?肿瘤坏死因子,
如果您不介意使用外部实用程序(就像您目前正在做的那样),您可以使用rename例如。
rename
unzip -oj tmp.zip -d tmp && rename 's/\s/_/g' tmp/* && rm tmp.zip