简体   繁体   中英

combining results of two find commands linux

I have a set of configuration backups that are organized like

backup/site1/10-11-2019
backup/site1/11-11-2019
backup/site1/12-11-2019

backup/site2/10-11-2019
backup/site2/11-11-2019
backup/site2/12-11-2019

backup/site3/10-11-2019
backup/site3/11-11-2019
backup/site3/12-11-2019

I need to list the configuration files that are less than specific size for one particular date for all sites. In a way so that I could combine following two commands from backup directory

    find . -type d -name "11-11-2019"
    find . -name "*.cfg" -size +500c

Please help me combining these two commands

Have you tried this?

find 11-11-2019 -name "*.cfg" -size +500c

Source: https://unix.stackexchange.com/questions/60849/find-files-in-multiple-folder-names

Can't check if it works right now:(

Thanks for the link. It gave me the hint to develop my command which serves my purpose.

find . \( -type f -and -path '*/2019-11-11/*' \) -name "*.cfg" -size -50c -print

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM