### find
```bash
#在 7 天前有修改過的檔案,例如今天是6/10,則7天前是6/4
find ./ -mtime 7
#在 7 天之內有修改過的檔案,例如今天是6/10,則7天內則是6/4~6/10 的檔案都列出
find ./ -mtime -7
#在 7 天以前有修改過的檔案,例如今天是6/10,則7天6/4 以前的檔案都列出
find ./ -mtime +7
#How to Find All Files and Folders Modified in The Last 24 Hours
find /home/daygeek -newermt "1 day ago" -ls
find /home/daygeek -newermt "-24 hours" -ls
find /home/daygeek -newermt "yesterday" -ls
#How to Find Modified Files and Folders Starting from a Given Date to the Latest Date
#This command allows you to find a list of files and folders that have been modified starting from a given date to the latest date.
find /home/daygeek/shell-script -newermt "2019-09-08" -ls
#How to find only files that were modified 120 days ago
#The below find command will show a list of files that were changed 120 days ago.
find /home/daygeek/shell-script -type f -mtime +120 -ls
#How to Find Only Files That was Modified Less Than 15 Days
#The below find command will show a list of files that have changed within 15 days.
find /home/daygeek/shell-script -type f -mtime -15 -ls
#How to Find Only Files That were Modified Exactly 10 Days Ago
#The below find command will show you a list of files that were changed exactly 10 days ago.
find /home/daygeek/shell-script -type f -mtime 10 -ls
#How to Find Only Files That Was Modified Less Than 30 Mins
#The below find command will show a list of files that have changed within 30 mins.
find /home/daygeek/ -type d -mmin -30 -ls
#How to Find a List of “sh” Extension Files Accessed in the Last 30 Days
#This command helps you to find a list of files with “sh” extension accessed in the last 30 days.
find /home/daygeek/shell-script -type f -iname "*.sh" -atime -30 -ls
#How to Find Files That Have Been Modified Over a Period of Time
#The below command shows a list of files that have changed in the last 20 minutes.
find /home/daygeek -cmin -20 -ls
#How to Find a List of Files Created Today
#This command enables you to find a list of files created today.
find /home/daygeek/shell-script -type f -ctime -1 -ls
# 找出 Downloads 中超過 30 天的檔案,並移至 Trash
find ~/Downloads/ -maxdepth 1 -mtime +30 | xargs -i mv {} ~/.local/share/Trash/files/
# 您可以使用以下指令來找出路徑中的大檔案列表:
find /path/to/directory -type f -size +100M -exec ls -lh {} \;
# 這個指令將在指定的目錄中尋找大小大於 100MB 的檔案,並列出檔案的詳細資訊。
# 您可以根據需要調整 `-size +100M` 的數值,以符合您的搜尋條件。
```
### 找出所有以 git 開頭的檔案所屬的資料夾:
```
find /path/to/directory -type f -name "git*" -exec dirname {} \; | sort | uniq
```
在上述的指令中,-exec dirname {} \; 是用來執行一個指令的功能,{} 代表先前找到的每個檔案的路徑。在這個情況下,dirname {} 會取得每個檔案的路徑,並輸出它的目錄部分。
這樣做的目的是為了將找到的檔案的路徑轉換成目錄的路徑,以便後續的 sort 與 uniq 指令可以正確地對它們進行排序與去重複操作。透過 -exec dirname {} \; 的使用,我們能夠在同一條指令中取得檔案的目錄路徑,並且為它們做進一步的處理。