记录unix“cp” (复制)命令响应
我正在处理一些文件,所以,结果可以是任何一种方式。
例如:
>cp -R bin/*.ksh ../backup/
>cp bin/file.sh ../backup/bin/
当我执行上面时命令,它被复制。如果复制成功,系统没有任何反应。如果没有,则在终端本身打印错误或响应 cp: file.sh: No such file or directory
。
现在,我想记录错误消息,或者如果成功,我想将自定义消息记录到文件中。我该怎么办?
确实有任何帮助。
谢谢
I am coping some file,So, the result can be either way.
eg:
>cp -R bin/*.ksh ../backup/
>cp bin/file.sh ../backup/bin/
When I execute above commands, its getting copied. No response from the system, if it copied successful. If not, prints the error or response in terminal itself cp: file.sh: No such file or directory
.
Now, I want to log the error message, or if it successful I want to log my custom message to a file. How can I do?
Any help indeed.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在 shell 脚本中编写:
try writing this in a shell script: