标签:info 删除 sys 命令记录 获得 sock 图片 soc ace
使用history
命令,取得命令历史,当bash进程结束后,会把命令历史存放到文件中,下次开机还能看到命令历史。
定制history
:通过设置环境变量,来定制history
环境变量$HISTSIZE:默认值是1000,也就是最多存1000条命令。
环境变量$HISTFILE:默认值是/home/登录用户/.bash_history。root用户是/root/.bash_history。bash进程退出后,把内存里的命令历史存放到此文件中。
环境变量$HISTFILESIZE:默认值是1000。命令历史文件的大小。
环境变量$HISTCONTROL:默认值是ignoredups。忽略重复的命令。
修改环境变量的方法
$ HISTCONTROL=ignoreboth
语法:history [-c] [-d offset] [n] or history -anrw [filename] or history -ps arg [arg...]
调用历史命令!
获得上一次命令里的最后一个参数
Esc .
Alt .
!$
# ls /etc/systemd/system/sysinit.target.wants/
dmraid-activation.service lvm2-monitor.service rhel-import-state.service
iscsi.service multipathd.service rhel-loadmodules.service
lvm2-lvmetad.socket rhel-autorelabel.service
lvm2-lvmpolld.socket rhel-domainname.service
# cd !$
cd /etc/systemd/system/sysinit.target.wants/
标签:info 删除 sys 命令记录 获得 sock 图片 soc ace
原文地址:https://www.cnblogs.com/xiaoshiwang/p/12041829.html