This directory contains various c++ script. In general, they are useful, but simple. Here is a description of each. Reading those samples is an easy way to get a feel for c++script. Note that c++script is both a utility and a library. This library has no special dependancies. As such it may be used in any C++ project (requires a c++ 23 compiler). findlargefiles Find files in a directory (and sub-directories) ordered by size. The output shows files of the parent directory and sub-directories folded in a single list. It is an easy way to spot large files in a directory tree. grep A sample grep utility. last-modified Find fies in directories (and sub-directories) ordered by modification time. Like findlargefiles, the output is folded (directory and subs) to present the last modified files at the end of the listing options Show how to define and use command line option in c++ scripts pstree pstree like utility. zip-concat Many examples using views::zip and views::concat. Mostly trick to avoid using the old for (;;) syntax.