访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

linux终端常用命令和windows终端常用命令对比

时间:2019-06-30

常用dos命令大全及其用法_linux常用命令_linux关机命令重启命令

在linux平台

ctrl + Alt + T 
在windows平台
菜单键+R 然后cmd 回车

比如我们过滤android日志

在linux平台终端命令如下

adb logcat | grep ***

在windows平台终端命令如下

adb logcat | findstr ***

linux平台终端命令如下

cd ..
windows平台终端命令如下
cd ..

linux平台终端命令如下

tab

windows平台终端命令如下

tab

linux平台终端命令如下

linux常用命令_常用dos命令大全及其用法_linux关机命令重启命令

rm file
windows平台终端命令如下
del file

linux平台终端命令如下

rm *.txt?
windows平台终端命令如下
del *.txt

linux平台终端命令如下

mk dir?
windows平台终端命令如下
md dir

linux平台终端命令如下

rm -rf dir
windows平台终端命令如下

1)、空文件夹的场景

rd dir 
2)、非空文件夹场景分两步删除
del dir
rd dir 

linux平台终端命令如下

ll?? 
windows平台终端命令如下
dir

linux常用命令_linux关机命令重启命令_常用dos命令大全及其用法

linux平台终端命令如下

cd ? 
windows平台终端命令如下
cd\

linux平台终端命令如下

echo *** > 1.txt?
windows平台终端命令如下
echo ××× > 1.txt

linux平台终端命令如下

echo *** >> 1.txt?
windows平台终端命令如下
echo *** >> 1.txt

linux平台终端命令如下

cat file
vi file
windows平台终端命令如下
type file

linux平台操作如下

点击鼠标右键就有这个选项

windows平台操作如下

需要在按住shift键然后点击鼠标右键

常用dos命令大全及其用法_linux关机命令重启命令_linux常用命令

linux平台终端命令如下

reboot
shutdown -r now
windows平台终端命令如下
shutdown -r now

linux平台终端命令如下

shutdown -h now
windows平台终端命令如下
shutdown -s now

linux平台终端命令如下

remmina
windows平台终端命令如下
nstsc 

linux平台终端命令如下

cd ~/Picture
windows平台终端命令如下

比如进入C盘命令

C:? 
进入C盘命令
D:

linux平台终端命令如下

nautilus path

常用dos命令大全及其用法_linux关机命令重启命令_linux常用命令

windows平台终端命令如下

explorer path

linux平台终端命令如下

nautilus .?
windows平台终端命令如下
explorer .

linux平台终端命令如下

nautilus  ..?
windows平台终端命令如下
explorer  ..

linux平台终端命令如下

which java
windows平台终端命令如下
where java

linux平台终端命令如下

ifconfig?
windows平台终端命令如下
ipconfig

linux平台终端命令如下

菜单键+L

windows平台终端命令如下

菜单键 + L

说明:哪里有问题的请大家指出linux常用命令linux常用命令,让后我改正,也欢迎大家提供更多的命令一起交流和学习

 上一个教程:linux grep命令详解