# linux-command **Repository Path**: fashionbrot/linux-command ## Basic Information - **Project Name**: linux-command - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-04-15 - **Last Updated**: 2024-04-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # linux-command ## 查看目录下文件夹占用大小 ```bash du -h --max-depth=1 ``` ## 删除指定目录 2021 年至 2023 年创建的文件夹 ```bash find /path/to/current_directory -type d -newermt "2020-12-31" ! -newermt "2024-01-01" -exec rm -rf {} \; ``` ## 删除当前目录 2021 年至 2023 年创建的文件夹 ```bash find . -type d -newermt "2020-12-31" ! -newermt "2024-01-01" -exec rm -rf {} \; ```