Skip to content

linux 命令 #46

@mysterin

Description

@mysterin

查看硬盘容量

df -h

查看目录容量

du -sh /usr/local

统计目录文件数量

ls -l | grep '^-' | wc -l

删除指定天数之前的文件

find /usr/local -mtime +30 -type f -name '*.png' | xargs rm -rf

每月定时任务

crontab -e
0 0 1 * * ls -l

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions