访问手机版  

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

招聘|合作 登陆|注册

网络工程师培训

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

Linux常用基本命令( tree, pwd, cd )

时间:2019-11-07

linux常用命令_常用linux命令_linux命令中的head命令

pwd与cd命令

>pwd命令是“print working directory”中每个单词的首字母缩写linux常用命令,其功能是显示当前工作目录的绝对路径。在实际工作中,我们在命令行操作命令时linux常用命令,经常会在各个目录路径之间进行切换,此时可使用pwd命令快速查看当前我们所在的目录路径。

还有一个 $PWD 环境变量,可以显示当前工作目录的绝对路径

常用linux命令_linux命令中的head命令_linux常用命令

ghostwu@dev:~$ echo $PWD
/home/ghostwu
ghostwu@dev:~$ cd ./php
ghostwu@dev:~/php$ echo $PWD
/home/ghostwu/php
ghostwu@dev:~/php$ pwd
/home/ghostwu/php
ghostwu@dev:~/php$ 
ghostwu@dev:~$ pwd
/home/ghostwu
ghostwu@dev:~$ cd /
ghostwu@dev:/$ pwd
/
ghostwu@dev:/$ ls
bin    dev   initrd.img  lost+found  opt   run   srv  usr
boot   etc   lib         media       proc  sbin  sys  var
cdrom  home  lib64       mnt         root  snap  tmp  vmlinuz
ghostwu@dev:/$ cd /etc/
ghostwu@dev:/etc$ cd
ghostwu@dev:~$ cd -
/etc
ghostwu@dev:/etc$ cd ~
ghostwu@dev:~$ cd -
/etc
ghostwu@dev:/etc$ cd ../home/ghostwu/
ghostwu@dev:~$ 

cd命令是“change directory”中每个单词的首字母缩写,其功能是从当前工作目录切换到指定的工作目录。

linux常用命令_linux命令中的head命令_常用linux命令

>切换到当前目录的上一级目录(cd..)。

>切换到当前目录( cd . )。

>切换到家目录( cd ~ ) ,cd不带参数 也是切换到家目录

linux命令中的head命令_linux常用命令_常用linux命令

>切换到刚才的目录( cd - )

tree命令,查看目录与文件的组织结构,默认ubuntu没有安装tree

ghostwu@dev:~$ tree
The program 'tree' is currently not installed. You can install it by typing:
sudo apt install tree
ghostwu@dev:~$ sudo apt install tree

linux命令中的head命令_常用linux命令_linux常用命令

ghostwu@dev:~$ tree
.
├── Desktop
├── Documents
├── Downloads
│?? ├── 1.rar
│?? ├── 1 - 副本.pptx
│?? ├── 2.rar
│?? ├── 2 - 副本.pptx
│?? ├── 3.rar
...............

tree -d: 只显示目录

tree -dL 2:L参数指定显示的层级 2表示2层

tree -df:显示完整路径

tree -dfi: 不显示树状层级结构

tree -L 1 -F: F参数会在目录后面加个 /,作用:用来跟文件区分

 上一个教程:Linux查看硬件常用命令