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.
我需要有关主题问题的帮助:我是 centos 6 环境的新手,我需要将 2 个历史记录导出到一个文件中,以便我可以通过电子邮件发送它。谢谢。
默认情况下bash,键入的命令被保存~/.bash_history并psql保存在 中~/.psql_history,因此您可以使用以下命令发送这些文件:
bash
~/.bash_history
psql
~/.psql_history
$ mail -s 'My history files' -a ~/.bash_history -a ~/.psql_history myemail@gmail.com
请注意,并非所有mail命令都支持 -a 标志来发送附件,ubuntu 中的 heirloom-mailx 支持。
mail