1.命令别名设置:alias,unalias
1)命令别名的定义规则
# alias lm=‘ls -l | more‘
2)查看目前有哪些命令别名
# alias
3)取消命令的别名
# unalias lm
2.历史命令:history
1)列出目前内存内所有history记忆
# history
2)列出目前最近的3条数据
# history 3
3)立刻将目前的数据写入histfile当中
# history -w
#在默认情况下,会将历史记录写入 ~/.bash_history 当中。
4)使用!执行命令
# history
66 man rm
67 alias
68 man history
69 history
# !66 <==执行第66笔命令
# !! <==执行上一个命令,本例中即!66
# !al <==执行最近以al为开头的命令(上面列出的第67个)
时间: 2024-10-08 08:42:11