|
|
|
|
|
by unqueued
631 days ago
|
|
If you are iterating over a lot of files, a read while loop can be a major bottleneck. As long as you use the null options from find and pipe into xargs, you should be safe with any filename. I've found it can reduce minutes down to seconds for large operations. If you have to process a large number of files, you can let xargs minimize the number of times a program is run, instead of running it once per file. Something like: # Set the setgid bit for owner and group of all folders
find . -type d -print0 | xargs -0 chmod g+s
# Make the targets of symlinks immutable
find . -type l -print 0 | xargs -0 readlink -z | xargs -0 chattr +i
Way faster.
But there are lots of caveats. Make sure your programs support it. Maybe read the xargs man page. |
|