盘点 20 个最受欢迎的 Linux 命令

系统
本文根据commandlinefu网站的历史排名,筛选出了前20个得票最高的Linux命令。看看你都能熟练使用了吗?

本文根据commandlinefu网站的历史排名,筛选出了前20个得票***的Linux命令。看看你都能熟练使用了吗? 

1. 以 root 帐户执行上一条命令

  1. sudo !! 

2. 利用 Python 搭建一个简单的 Web 服务器

可通过 http://$HOSTNAME:8000访问

  1. python -m SimpleHTTPServer 

3. 切换到上一次访问的目录 

  1. cd -

4. 将上一条命令中的 foo 替换为 bar,并执行  

  1. ^foo^bar

5. traceroute + ping   

  1. mtr google.com

6. 快速调用一个编辑器来编写一个命令 

  1. ctrl-x e

7. 执行一个命令,但不保存在命令历史记录中 

  1. <space>command

8. 重新初始化终端

  1. reset

9. 调出上次命令使用的参数 

  1. 'ALT+.' or '<ESC> .'

10. 以更加清晰的方式显示当前系统挂载的文件系统

  1. mount | column -t

11. 在给定的时间执行命令 

  1. echo "ls -l" | at midnight

12. 通过DNS控制台查询维基百科 

  1. dig +short txt <keyword>.wp.dg.cx

13. 从80端口向你本地的2001端口开启隧道

  1. ssh -N -L2001:localhost:80 somemachine

14. 快速访问ASCII表  

  1. man ascii

15. 获取你的外部IP地址 

  1. curl ifconfig.me

16. !! 表示重复执行上一条命令,并用 :gs/foo/bar 进行替换操作

  1. !!:gs/foo/bar

17. 输出你的麦克风到远程机器的扬声器 

  1. dd if=/dev/dsp | ssh -c arcfour -C username@host dd of=/dev/dsp

18. 挂载一个临时的内存分区 

  1. mount -t tmpfs tmpfs /mnt -o size=1024m

19. 以SSH方式挂载目录/文件系统 

  1. sshfs name@server:/path/to/folder /path/to/mount/point

20. 通过curl更新Twitter 

  1. curl -u user:pass -d status="Tweeting from the shell" <a href="http://twitter.com/statuses/update.xml">http://twitter.com/statuses/update.xml</a>

本文地址:http://linux.cn/article-3111-1.html

责任编辑:黄丹 来源: Linux中国
相关推荐

2016-08-12 14:50:29

开源HadoopSpark

2015-04-28 13:51:52

开源云项目IaaSPaaS

2019-02-19 15:13:27

JavaGitHub

2018-07-24 11:18:04

2014-01-02 14:24:29

火狐扩展火狐浏览器

2020-09-09 10:40:26

UbuntuLinux桌面

2023-04-11 08:26:34

2014-03-31 10:34:29

Ubuntu LinuOpenStack

2023-09-11 06:43:38

岗位ITDevOps

2015-07-21 15:22:16

Java 开发CMS 系统

2013-07-22 15:38:08

Java大师底层

2023-09-19 15:04:02

Github开源

2016-02-02 10:56:50

2023-03-07 14:18:43

2017-06-13 13:29:32

前端框架

2017-10-10 13:29:54

AI工具 库 平台

2018-07-05 09:06:02

2010-02-06 15:41:08

ibmdwJava

2020-11-04 13:14:55

Linux发行版Linux

2010-02-24 15:27:17

ibmdw
点赞
收藏

51CTO技术栈公众号