为了账号安全,请及时绑定邮箱和手机立即绑定

Bash中的[命令历史]tips小结

标签:
Linux

在之前就记录过不少和Bash的命令历史相关的小技巧,比如:统计最常用的10个命令、以root身份执行上一条命令、快速获取上一条命令的最后一个参数……

后来看到一篇文章: 像黑客一样使用 Linux 命令行 ,学习到了不少,同时又去网上搜了更多的资料,记录、总结成了本文。

0.最常用的10个命令

history |> awk '{CMD[$2]++;count++;} END{ for(a in CMD) print CMD[a],CMD[a]/count*100 "% " a;}' |> grep -v "./" |> column -c3 -s " " -t |> sort -nr |> nl |> head -n 10

1.以root身份执行上一条命令

# 以root身份执行上一条命令$ sudo !!

2.替换上一条命令的[部分]内容

#使用 ^old^new 换掉输错或输少的部分( !:s/old/new )#使用 !:gs/old/new 将 old 全部换成 new$ echo "a nginx, web nginx server, nginx..."a nginx, web nginx server, nginx...$ ^nginx^apache
echo "a apache, web nginx server, nginx..."a apache, web nginx server, nginx...$
$ echo "a nginx, web nginx server, nginx..."a nginx, web nginx server, nginx...$ !:gs/nginx/apache
echo "a apache, web apache server, apache..."a apache, web apache server, apache...$

3.快速获取上一条命令的最后一位参数

#通过 !$ 得到上一条命令的最后一位参数#快捷键 [Alt + .]

4.快速获取上一条命令的第一位参数

#通过 !^ 得到上一条命令的第一个参数#快捷键 [Ctrl + Alt + y]

5.如何获取上一条命令的多个参数

#通过 !:n 得到上一条命令第 n 个参数$ touch foo.txt bar.txt baz.txt
$ vim !:2vim bar.txt#通过 !:x-y 得到上一条命令从 x 到 y 的参数$ touch foo.txt bar.txt baz.txt
$ vim !:1-2vim foo.txt bar.txt#通过 !:n* 得到上一条命令从 n 开始到最后的参数$ cat /etc/resolv.conf /etc/hosts /etc/hostname
$ vim !:2*vim /etc/hosts /etc/hostname#通过 !* 得到上一条命令的所有参数$ touch foo.txt bar.txt hey.txt haha.txt hello.txt
$ cat !*cat foo.txt bar.txt hey.txt haha.txt hello.txt

6.如何获取上一条命令的命令名

#通过 !# 得到上一条命令的命令名
参考链接:

原文链接:http://outofmemory.cn/shell/shell-tips

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消