Java01 常用的linux命令
一、linux 命令
0.man:查询使用手册
1.pwd:Print the full filename of the current working directory. 打印当前工作目录(文件夹)
2.ls:List information about the FILEs (the current directory by default). Sort entries alphabetically if none of -cftuvSUX nor --sort. 显示当前目录的所有文件(夹)
3.cd:改变当前工作目录(后面加+路径)
cd.. 返回上一层目录(..是当前目录的父目录)
cd ~ 进入当前帐户的根目录
cd / 进入顶层根目录(/表示挂载点)
4.clear:清屏
5.su root:提升当前用户的权限
6.touch:创建一个文本文件
7.mkdir:创建一个文件夹
-p多层目录一次创建 mkdir -p b/c/d/e
8.mv:移动文件
9.rm:删除文件 rm
-r:删除目录
10.rmdir:删除目录
11.cat:查看文本内容
12.cal:查看日历
13.sh:执行shell脚本
14.chmod:更改权限
e.g. a+w 所有用户all添加写权限
o+rwx 其他用户加rwx
g-w 同组用户减去写权限
e.g. chmod 777 test.sh(3位二进制分别对应)
15.ping 16.ifconfig:查看IP(/sbin/ifconfig)
17.ctrl+shift+"+/-" 放大缩小终端窗口大小
二、其他
1.相对路径: . .. ../~
绝对路径:必须从根目录开始
e.g./home/tarena/Desktop
2.权限:-rw-rw-r--
1) 2) 3) 4)
分段: - rw- rw- r--
1)-代表文件 d代表目录
2)u 用户本身user
3)g同组用户group
4)o其他用户other
5) r:read w:write x:可执行 -无