1.fish@ubuntu:~/linux$
- fish 代表用户名
- ubuntu 代表机器名
- ~ 代表家目录
- ~/linux 当前所在目录
- $ 代表普通用户
- root@ubuntu:/home/python# 管理员对应是#符号
2.回到家目录的方式
- cd
- cd ~
- $HOME 环境变量代表的是家目录(我的系统输出为:/home/fish)
- cd /home/fish
3.显示当前工作目录pwd
root@ubuntu:/home/python# pwd
/home/python
4.mkdir 创建目录
- mkdir [option] dirname1 dirname2...
- mkdir 删除目录
- rmdir 不能删除非空目录,空目录是只是有.和..
5.which 命令-显示对应所在的路径
root@ubuntu:/home/python# which tree
/usr/bin/tree
原文: https://www.cnblogs.com/LittleFishC/p/13205781.html