十个很有用的Linux单行命令
话不多说,直接贴出来,排名分先后,嘻嘻。
10:sudo !!
以 root 帐户执行上一条命令。
9:python -m SimpleHTTPServer
利用 Python 搭建一个简单的 Web 服务器,可通过 http://$HOSTNAME:8000 访问。
8::w !sudo tee %
在 Vim 中无需权限保存编辑的文件。
7:cd -
更改到上一次访问的目录。
6:^foo^bar
将上一条命令中的 foo 替换为 bar,并执行。
5:cp filename{,.bak}
快速备份或复制文件。
4:mtr fcbu.com
traceroute ping
3:!whatever:p
搜索命令历史,但不执行。
2:$ssh-copy-id user@host
将 ssh keys 复制到 user@host 以启用无密码 SSH 登录。
1:ffmpeg -f x11grab -s wxga -r 25 -i :0.0 -sameq /tmp/fcbu.com_desktop.mpg
把 Linux 桌面录制成文件名为fcbu.com_desktop.mpg的视频。
评论列表
查看全部0条评论