码迷,mamicode.com
首页 > 系统相关 > 详细

如何在shell脚本里开启history命令。

时间:2018-03-28 17:28:02      阅读:409      评论:0      收藏:0      [点我收藏+]

标签:off   ash   file   -o   shell脚本   post   pos   bubuko   如何   

1.linux bash内置命令与普通命令的区别:which查不到的都是bash内置命令

 

2.history是bash内置命令,能不能开启由bash说了算

 

3.set -o查看是否开启

1)在交互式查看

[root@py-centos7 ~]# set -o |grep history
history on

2)在脚本里查看

[root@py-centos7 ~]# sh a.sh
history off

脚本内容:

##! /bin/sh
HISTFILE=~/.bash_history
set -o |grep history

 

4.set -o 命令 打开bash的history配置

脚本内容

##! /bin/sh
HISTFILE=~/.bash_history
set -o history
history

执行结果 :

技术分享图片

 

如何在shell脚本里开启history命令。

标签:off   ash   file   -o   shell脚本   post   pos   bubuko   如何   

原文地址:https://www.cnblogs.com/linuxfan/p/8664988.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!