简体   繁体   中英

Shell script to find and count total number of characters in all the files

I'm struggling to make a script to find every file in your home directory that is less than 3 days old and then get a count of the total number of characters in all of these files.

Any suggestions? Thanks.

Below command should work from the current directory.

find ./ -ctime -3 | xargs wc -c

Below should work for home directory.

find ~ -ctime -3 | xargs wc -c

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