使用linux脚本命令

使用linux脚本命令,第1张

概述script命令执行并记录日志. (http://www.computerhope.com/unix/uscript.htm) (http://linuxers.org/article/script-command-line-tool-recordsave-your-terminal-activity) 我使用script命令来保存命令和那些输出. 每当使用’script’时,我都会输入如下命令. @H_301_0@ @H_301_0@ script命令执行并记录日志.

(http://www.computerhope.com/unix/uscript.htm)

(http://linuxers.org/article/script-command-line-tool-recordsave-your-terminal-activity)

我使用script命令来保存命令和那些输出.

每当使用’script’时,我都会输入如下命令.

@H_403_19@$script result.logScript started,file is result.log$date$ls -la.$exit

有时我想在shell脚本中使用这些命令.

所以我跑得像以下.

@H_403_19@$script -c test.sh result.log

但是result.log只有输出,它不包含命令本身.
我希望result.log包含命令和输出.

我该怎么做?

谢谢

解决方法 如果你使用sh -x来运行你的脚本,它将打印命令或添加
将-x设置为您的脚本.

@H_403_19@script -c "sh -x ./test.sh" reult.log

样本输出:

@H_403_19@+ dateTue Dec 23 09:52:22 CET 2014+ ls -la @H_301_0@ 总结

以上是内存溢出为你收集整理的使用linux脚本命令全部内容,希望文章能够帮你解决使用linux脚本命令所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/1017970.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存