Mac文件属性
1 Mac文件属性.png从文件属性看文件类型与文件权限
2 文件类型与权限.png改变权限:chmod
设置的方法有两种:数字类型改变和符号类型改变
由于文件权限分为三种身份:[user][group][other]
三种权限:[read][write][execute]
- 数字类型
各个权限数字 : r : 4 w : 2 x: 1
0:[---]
1:[--x]
2:[-w-]
3:[-wx]
4:[r--]
5:[r-x]
6:[rw-]
7:[rwx]
如果一个文件权限为[-rwxr-xr-x]
user : 4+2+1 = 7
group: 4+0+1 = 5
other: 4+0+1 = 5
- 符号类型
chmod [u、g、o、a] [+(加)、-(减)、=(设置)] [r、w、x] 文件名
查看系统支持的shell
cd /private/etc
cat shells
显示支持的shell列表
# List of acceptable shells for chpass(1).
# Ftpd will not allow users to connect who are not using
# one of these shells.
/bin/bash
/bin/csh
/bin/ksh
/bin/sh
/bin/tcsh
/bin/zsh
修改默认shell
chsh -s /bin/bash
网友评论