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

20个高大上的linux命令,以后留着用

时间:2015-05-26 06:50:42      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:command   服务器   python   linux   编辑器   

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

sudo !!

2.  利用 Python 搭建一个简单的 Web 服务器,可通过 http://$HOSTNAME:8000访问       

python -m SimpleHTTPServer

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

cd -

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

^foo^bar

 5.   traceroute + ping   

mtr google.com

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

ctrl-x e

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

<space>command

 8. 重新初始化终端

reset

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

‘ALT+.‘ or ‘<ESC> .‘

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

mount | column -t

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

echo "ls -l" | at midnight

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

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

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

ssh -N -L2001:localhost:80 somemachine

14. 快速访问ASCII 

man ascii

15. 获取你的外部IP地址

curl ifconfig.me

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

!!:gs/foo/bar/

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

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

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

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

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

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

20. 通过curl更新Twitter

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://xuexuhui.blog.51cto.com/9647696/1655109

20个高大上的linux命令,以后留着用

标签:command   服务器   python   linux   编辑器   

原文地址:http://xuexuhui.blog.51cto.com/9647696/1655109

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