Linux常用命令(不定时更新)

改变abc这个目录及其下面所有的文件和目录的所有者是saran

chown ‐R saran ./abc/

解压test.zip到tmp目录下,如果有相同文件则覆盖

unzip -o test.zip -d tmp/

查看磁盘占用

du -lh --max-depth=1

查看用户所在组

groups xxx

当前服务器文件同步到远程服务器

rsync -aSvH /tmp/lihao12/ [email protected]::data

根据文件名从根目录模糊查询

find / -name 'bill*'

你可能感兴趣的:(Linux常用命令(不定时更新))