Dealing with Lists of MSS files

While shell patterns (wildcards), msfind and recursive operations allow you to conveniently manipulate multiple MSS files with a single command, they may not be flexible enough for every situation. If a list of the desired MSS files can be generated, you can use the xargs(1) program to drive the appropriate DCS command with the contents of the list. The xargs command breaks up the list of files into manageable chunks so that it does not exceed your shell's command line limit. Hence the desired DCS command may actually be run several times, each with a different portion of the filename list. The xargs command has several options, including the -t option that allows you to see the full command it's executing.

Here are some points to be aware of when using xargs: