本文链接:
echo pwd>>pwd.sh
ls -l pwd.sh
查看文件或目录的两种方式
umask
umask -S
查看新建是否与默认权限相符
umask
touch test1
mkdir test2
ls -l
修改pwd.sh文件权限为r-xr–r--
chmod 544 /root/pwd.sh
执行pwd.sh
./pwd.sh
添加用户stu,修改密码为123
useradd stu
passwd stu
修改问价test1的属主为stulinux常用命令,test属的组为stu
chmod stu test1
chgrp stu test2
ls -l
增加test1的属主具有可执行权限
chmod u+x test1
ls -l
查看文件的类型
file /study/bashrc
查询ifconfig 和cd命令的完整文件名
which ifconfig
which cd
找出与passwd有关的“说明文件”文件名
whereis -m passwd
找出系统中所有与passwd相关的文件名
locate passwd
列出系统3天前24小时内修改过的文件
find / -mtime 3
使用find查找当前目录下比man.config新的文件linux常用命令,并存储到man.config.new文件。
find/root/27083914 -newer man.config>man.config.new
列出/etc下比/etc/man.config新的文件
find /etc -newer /etc/passwd
查找系统中所有属于root的文件和不属于任何人的文件
find / -user root
find / -nouser
使用find查找/下面所有名称为man.config的文件
find / -name man.config
使用locate查找所有名称为man.config的文件
locate man.config
locate 更加详细与man.config相关联的也都列出来
找出/etc下文件类型为f的文件
find /etc -type f
找出系统大于1M的文件
上一个教程:Linux几个重要命令
下一个教程:Linux joe 命令用法详解