运行时postfix logrotate
,我收到错误fatal: empty 'maillog_file' parameter value. logrotation failed.
There is returned of logrotate the main.cf document但我不明白需要添加什么,或者这是否是解决方案所在。
我还尝试在 /etc/logrotate.d/ 中添加后缀文件,但这并没有解决问题。
我正在尝试使用 PowerShell 连接一堆 1GB 的文件。通常我会在 Windows cmd.exe 中使用copy /b file.txt.0+file.txt.1 file.txt
. 但是,我所在的工作站已禁用 cmd.exe。 如何在 PowerShell 中运行相同的命令?当我完全相同地运行它时,出现以下错误,
Copy-Item : A positional parameter cannot be found that accepts argument 'file.txt'.
At line:1 char:1
+ copy /c file.txt.0+file.txt.1 file.txt
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [Copy-Item], ParameterBindingException
+ FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.PowerShell.Commands.CopyItemCommand
我也试过这个,但它似乎只是用最后一个输入文件覆盖输出,
copy -Path [file.txt.0, file.txt.1] -Destination file.txt