a. 显示隐藏文件ls -a
b. 不显示目录“temp”里面的文件,只显示temp目录文身: ls -d temp
c. cp的注意事项
i. cp hello.txt dir1 #意为把hello.txt复制到dir1/下
ii.cp hello.txt hello2.txt #意思是把hello.txt复制一份取命名为hello2.txt
iii. cp -r dir1 dir2
#如果dir2存在,将把dir1复制到dir2/下,产生dir2/dir1目录
#如果dir2不存,将把dir1复制成dir2
d. "chmod +x hello.sh"这一类命令的完整格式是
chmod (who)(action)(permissions) hello.sh
比如,
chmod a+x hello.sh #指为所有人增加执行权限
chmod o-w hello.sh #取消其它组成员的写权限
chmod g=x hello.sh #本组成员只有执行权限,没有读写权限